May 03, 2024, 11:11:38 PM

News:

Own IWBasic 2.x ? -----> Get your free upgrade to 3.x now.........


String concatenation?

Started by Doc, February 04, 2006, 01:11:04 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Doc

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-

Ionic Wind Support Team

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.
Ionic Wind Support Team

Doc

QuoteWell there is _strappend in the acommon library

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

-Doc-