Replacing newline character in Genexus -


how can replace newline character in string space?

i tried this:

&myvar = &myvar.replace(newline(),' ') 

but doesn't work.

i found myself solution:

&myvar = &myvar.replace(chr(10),' ') 

Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -