Search code examples
stringcharbasicateasy

Char[] type to String in ATEasy


In the ATEasy software development environment, I have a char[100] which contains a sentence and I want to convert it to String type. How can I do that? Is there a special function for that?


Solution

  • The solution was pretty easy.

    I just assigned the char array variable to the string variable, as follows:

    sStringType = acCharType;

    and it worked. I assume that an implicit casting is performed.