我需要删除特殊字符,例如 /使用jsonata

发布于 2025-01-24 21:21:00 字数 201 浏览 0 评论 0 原文

json

{ "Data":"i need , to do the transformation / but I am not able " }

我需要使用jsonata删除特殊字符,

例如 “ ineedtodothetryformation butiamnotable”

请帮助我找到解决方案

Json

{ "Data":"i need , to do the transformation / but I am not able " }

I need to remove special characters using jsonata

The final output like be
"IneedtodothetransformationbutIamnotable"

Please help me to find solutions

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梅窗月明清似水 2025-01-31 21:21:00

我相信这就是您要寻找的:

”在此处输入图像描述

链接到jsonata Playground:https://www.stedi.com/jsonata/playground?statev2=eJw1jc0KwjAQhF9lWDxUiNTfS8WbF5%2BhqbBtVy20SUlSEI3vbgp6GmaYb6YsydvJNUKK5Dk68b6zJhmO67hJ%2BoamMwfWVGjqYERaKASL1iI8BMGx8TfrBg4JRI56CriABxgbwHUvaQAfPW9m2gALJ%2Ff0hOKEvLzy6lXlx18%2B9txINr%2Bpf00lWtNSm2XibdzGXdxTpehA1RfxMDne

Code:

(
  $regexp := /[^a-zA-Z]/;
  $replace(Data, $regexp, "")
)

<代码> $替换函数可以将正则表达式作为参数。在此示例中, [^a-Za-Z] 不是的任何内容匹配AZ(soulter/uppercase)之间的字母。

I believe this is what you're looking for:

enter image description here

Link to solution in JSONata playground: https://www.stedi.com/jsonata/playground?statev2=eJw1jc0KwjAQhF9lWDxUiNTfS8WbF5%2BhqbBtVy20SUlSEI3vbgp6GmaYb6YsydvJNUKK5Dk68b6zJhmO67hJ%2BoamMwfWVGjqYERaKASL1iI8BMGx8TfrBg4JRI56CriABxgbwHUvaQAfPW9m2gALJ%2Ff0hOKEvLzy6lXlx18%2B9txINr%2Bpf00lWtNSm2XibdzGXdxTpehA1RfxMDne

Code:

(
  $regexp := /[^a-zA-Z]/;
  $replace(Data, $regexp, "")
)

$replace function can take a regular expression as an argument. In this example, [^a-zA-Z] is matching anything that's not a letter between a-z (lower/uppercase).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文