Hi,
I would like to replace "\r\n" by "_" within a specific string.
I tried :
strMyString.Rep lace('\r', '_');
strMyString.Rep lace('\n', '_');
or
strMyString.Rep lace(System.Env ironment.NewLin e, '_');
and it doesn't work, what is missing?
Thank you!
Marty
I would like to replace "\r\n" by "_" within a specific string.
I tried :
strMyString.Rep lace('\r', '_');
strMyString.Rep lace('\n', '_');
or
strMyString.Rep lace(System.Env ironment.NewLin e, '_');
and it doesn't work, what is missing?
Thank you!
Marty
Comment