IonicWind Software

Aurora Compiler => General Discussion => Topic started by: Doc on February 04, 2006, 01:11:04 AM

Title: String concatenation?
Post by: Doc on February 04, 2006, 01:11:04 AM
Paul,
I've been working on some examples for Aurora and when looking the the incude files, I didn't see a function
for appending strings (APPEND$  ???).

Will Aurora use only simple string concatenation "+" or am I  just overlooking something obvious?

-Doc-
Title: Re: String concatenation?
Post by: Ionic Wind Support Team on February 04, 2006, 07:41:22 AM
Well there is _strappend in the acommon library

str3 = _strappend(str1, str2);

Which is used internally by +.  You can use it directly if you wish.
Title: Re: String concatenation?
Post by: Doc on February 04, 2006, 08:26:05 AM
QuoteWell there is _strappend in the acommon library

Dang it! ...and I didn't even look in there.  ::)

-Doc-