我在运行
后传递了一个描述字段cfset local.description = rereplacenocase(arguments.description,chr(13),'<br>','all')
到DESCRIPTION:#local.description#\ n
直到第一个BR,它才显示第一线。有什么想法吗?
答案 0 :(得分:0)
使用replace()
代替。你真的不是在这里做正则表达式......
var description = replace(arguments.description, chr(13), '<br>', 'all');
之类的内容