does GE support conversion characters?

Posted:
Sun Dec 20, 2009 3:54 pm
by j2graves
I tried to make a script that used conversion characters to insert a string in front of another string. instead, I ONLY got the string that was inserted, and not the part that came after it.
Re: does GE support conversion characters?

Posted:
Tue Dec 29, 2009 4:53 am
by Bee-Ant
If Im not mistaken, use strcat
- Code: Select all
strcat(string1,string2);
Re: does GE support conversion characters?

Posted:
Tue Dec 29, 2009 3:35 pm
by j2graves
OH! I got it! I was using strcpy

thanx +1!
Re: does GE support conversion characters?

Posted:
Tue Dec 29, 2009 4:41 pm
by Bee-Ant
Oh yah, you can also use sprintf
- Code: Select all
sprintf(string1,"%s %s",string2,string3);

I thought you were asking of conversion from integer to string or vice versa.