正则表达式删除 mule3 中的特殊字符

发布于 2025-01-10 05:04:00 字数 199 浏览 0 评论 0原文

我在 Mule3 中收到一些输入,并且所有输入都有一些特殊字符。

输入字符串的示例如下:

 "@不mule@#soft还!#%%"

我需要删除所有特殊字符,并且只需要“mulesoft”作为输出中的字符串(或者您可以说仅字符串中的字母数字字符)

我已经研究了一些正则表达式,但没有得到任何运气

I am getting some inputs in Mule3 and all have some special characters.

examples of input string is as below:

 "@不mule@#soft还!#%%"

I need to remove all special characters and need only "mulesoft" as string in output (or you can say only alphanumeric characters from string)

I have researched some regex but didn't get any luck

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

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

发布评论

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

评论(2

在梵高的星空下 2025-01-17 05:04:00

获得所需输出的另一种方式

%dw 1.0
%output application/json
%var text = "@不s/\p@#ecial还!#%%"
---
"output": text replace /([^0-9a-zA-Z]+)/ with ""

another way of getting desired output

%dw 1.0
%output application/json
%var text = "@不s/\p@#ecial还!#%%"
---
"output": text replace /([^0-9a-zA-Z]+)/ with ""
往事风中埋 2025-01-17 05:04:00

试试这个扫描

%dw 1.0
%output application/json
---
flatten("@不mule@#soft还!#%%" scan /[a-zA-Z]/) joinBy ""

Try this scan

%dw 1.0
%output application/json
---
flatten("@不mule@#soft还!#%%" scan /[a-zA-Z]/) joinBy ""
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文