标签: genexus
如何用空格替换字符串中的换行符?
我试过了:
&myVar = &myVar.Replace(NewLine(),' ')
但它没有用。
答案 0 :(得分:1)
我发现自己是解决方案:
&myVar = &myVar.Replace(Chr(10),' ')