Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用正则表达式删除所有带有奇数元音的单词。
我试过像[aeoui][^aeoui]*([aeoui][^aeoui]*[aeoui][^aeoui]*)
[aeoui][^aeoui]*([aeoui][^aeoui]*[aeoui][^aeoui]*)
怎么样:
(^|\W)([^aeoui\W]*([aeoui][^aeoui\W]*[aeoui][^aeoui\W]*)*[aeoui][^aeoui\W]*)(\W|$)
编辑:我不知道 vi 的确切语法,但我希望使用的元素应该在 vi 中可用。
这个词本身可以在第二组中找到。