regex 如何从正则表达式中删除文本?[已关闭]

weylhg0b  于 2022-11-18  发布在  其他
关注(0)|答案(1)|浏览(115)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
6天前关闭。
Improve this question
我有一个regex [a-z]+,它可以选择所有类型文本。
任何方法来停止选择一些文本示例flow
1.如果用户选择flow,则不会选择
1.如果用户选择flow1,则它将选择。
1.如果用户选择abc,则它将选择。
1.如果用户选择login,则它将选择。

e4yzc0pl

e4yzc0pl1#

我觉得你应该试试这个正则表达式

\B(?!流量)\w+

相关问题