如果不匹配则替换字符
我正在寻找一个删除非法字符的正则表达式。但我不知道角色会是什么。
例如:
在一个进程中,我希望我的字符串匹配 ([a-zA-Z0-9/-]*)
。所以我想替换所有不匹配上面的正则表达式的字符。
I'm looking for a regular expression that removes illegal characters. But I don't know what the characters will be.
For example:
In a process, I want my string to match ([a-zA-Z0-9/-]*)
. So I would like to replace all characters that don't match the regexp above.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这将是:
字符类开头的
[^ ]
否定它 - 它匹配不在该类中的字符。另请参阅:字符类
That would be:
[^ ]
at the start of a character class negates it - it matches characters not in the class.See also: Character Classes
感谢 Kobi 的回答,我创建了一个 用于删除不接受字符的辅助方法 。
允许的模式应采用正则表达式格式,期望它们包含在方括号中。函数将在打开方括号后插入波浪号。
我预计它不适用于描述有效字符集的所有正则表达式,但它适用于我们正在使用的相对简单的集。
Thanks to Kobi's answer I've created a helper method to strips unaccepted characters .
The allowed pattern should be in Regex format, expect them wrapped in square brackets. A function will insert a tilde after opening squere bracket.
I anticipate that it could work not for all RegEx describing valid characters sets,but it works for relatively simple sets, that we are using.