正则表达式用问号替换逗号分隔的单词
我想替换以下字符串:
Chrome、Internet Explorer、Mozlla、Opera
或
约翰、杰克、吉尔、比尔
比尔
?, ?, ?, ?
我需要一个 Java 正则表达式来替换上面的字符串。查找所有单词并用问号替换
I want to replace the following strings:
chrome, internet explorer, mozlla, opera
or
john, jack, jill, bill
with
?, ?, ?, ?
I need a regular expression for Java which can replace the above string. Find all words and replace with question marks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的东西:
[编辑]你改变问题的速度比我回答的速度还要快。
要替换任何单词:
\b
- 单词中的第一个或最后一个字符\w
- 字母数字+
- 一次或多次重复Something like this:
[Edit] You are changing the question faster then I can answer.
To replace any word:
\b
- first or last character in the word\w
- alphanumeric+
- one or more repetitions