我需要使用 jsonata 删除 / 等特殊字符
I need to remove the special characters like / using jsonata
Json
{ "Data":"i need , to do the transformation / but I am not able " }
我需要使用 jsonata 删除特殊字符
最终输出像
“我需要做转型,但我很引人注目”
请帮我寻找解决方案
我相信这就是您要找的:
代码:
(
$regexp := /[^a-zA-Z]/;
$replace(Data, $regexp, "")
)
$replace
函数可以将正则表达式作为参数。在此示例中,[^a-zA-Z]
匹配任何 而不是 介于 a-z (lower/uppercase).
之间的字母
Json
{ "Data":"i need , to do the transformation / but I am not able " }
我需要使用 jsonata 删除特殊字符
最终输出像 “我需要做转型,但我很引人注目”
请帮我寻找解决方案
我相信这就是您要找的:
代码:
(
$regexp := /[^a-zA-Z]/;
$replace(Data, $regexp, "")
)
$replace
函数可以将正则表达式作为参数。在此示例中,[^a-zA-Z]
匹配任何 而不是 介于 a-z (lower/uppercase).