I am writing Ebasic code to handle unicode strings, and have need to append strings. I'm seeing that function for ASCII, but not for unicode. Paul has already included a great complement of Unicode functions in Ebasic, so I am puzzled that this one is not included. Am I missing something?
Why not just use the + operator?
wa$ = wb$ + wc$
Or _wstrappend, which is what the + operator calls.
wa$ = _wstrappend(wb$, wc$)
Or even WUSING will work.
wa$ = WUSING("&&",wb$,wc$)
Paul.
Thanks, Paul. The "+" operator works! I needed a nudge to think "outside the box".
"+" for string concatenation (appending) is standard in all BASIC-like languages.