我正在使用node.js和express。
我有一个类似于以下的字符串:
Here is my string but now I need to processString("mystring")
and return the processString("data").
我想搜索所有出现的 processString 并将其替换为函数的结果。我需要运行的功能是异步的。是否有捷径可寻?
谢谢!
我正在使用node.js和express。
我有一个类似于以下的字符串:
Here is my string but now I need to processString("mystring")
and return the processString("data").
我想搜索所有出现的 processString 并将其替换为函数的结果。我需要运行的功能是异步的。是否有捷径可寻?
谢谢!
您的问题并不是很清楚,“为什么”和“什么”可能对回答您的问题更有帮助。据我了解,您想替换processString("****")
为****
在这种情况下,您可以使用以下内容:
var str = 'Here is my string but now I need to processString("mystring") and return the processString("data").'
str = str.replace(/processString\(\".*?\"\)/gi, function(match){
return match.replace("processString\(\"", "").replace("\"\)", "")
})
console.log(str);
这将匹配processString("****")
内部内容,希望这就是您要找的!