0

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?

Guy Avraham
  • 3,482
  • 3
  • 38
  • 50
Raz
  • 489
  • 3
  • 8
  • 17

1 Answers1

0

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.

Guy Avraham
  • 3,482
  • 3
  • 38
  • 50
Raz
  • 489
  • 3
  • 8
  • 17