小程序
小游戏
企业微信
微信支付
扫描小程序码分享
引入wxs文件
{{tools.filter(item.description)}}
return text.replace(/↵/g, '/n')
使用replace报错说 / 这个不能用,到底应该怎么识别 ↵这个换行
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
不知道楼主问题解决了没有,我特地测试了一下,提供一下我的代码,亲测可用,大致的思路如下
使用encodeURIComponent对内容进行编码,得知↵编码为‘%0A‘
编码的内容把’%0A‘替换掉你需要的内容
把替换掉的内容使用decodeURIComponent解码之后返回
代码如下:
// utils.wxs
function replaceNewlineSymbol(text) {
function
replaceNewlineSymbol(text) {
// 替换textarea的换行符,text为需要替换的内容
var
encodeText = encodeURIComponent(text);
regexp = getRegExp(
'%0A'
,
'g'
);
newText = encodeText.replace(regexp,
'(Hello WORLD!)'
return
decodeURIComponent(newText);
}
module.exports = {
replaceNewlineSymbol: replaceNewlineSymbol
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
可以可以的,这个好用,
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
不知道楼主问题解决了没有,我特地测试了一下,提供一下我的代码,亲测可用,大致的思路如下
使用encodeURIComponent对内容进行编码,得知↵编码为‘%0A‘
编码的内容把’%0A‘替换掉你需要的内容
把替换掉的内容使用decodeURIComponent解码之后返回
代码如下:
// utils.wxs
function
replaceNewlineSymbol(text) {
// 替换textarea的换行符,text为需要替换的内容
var
encodeText = encodeURIComponent(text);
var
regexp = getRegExp(
'%0A'
,
'g'
);
var
newText = encodeText.replace(regexp,
'(Hello WORLD!)'
);
return
decodeURIComponent(newText);
}
module.exports = {
replaceNewlineSymbol: replaceNewlineSymbol
}
可以可以的,这个好用,