mjpedreira1
30th November 2009, 17:29
Hello,

I need to replace in a string "\n" for "abcede".
I don´t know any function for replace characters in strings.

Thanks,

María

bdittmar
30th November 2009, 18:05
Hello,

I need to replace in a string "\n" for "abcede".
I don´t know any function for replace characters in strings.

Thanks,

María

Hello,

use pos(), rpos() to locate the position and you'll be able to reconcatenate your string.

Regards

mjpedreira1
1st December 2009, 19:06
Thanks bdittmar,

I can solve my problem using pos() function!