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.
作为我作业的一部分,我必须用至少一个数字替换单词 STOP,有没有使用正则表达式的方法?
单词 a1wew abc 1rr sd 输出 STOP abc STOP sd
单词 a1wew abc 1rr sd
输出 STOP abc STOP sd
我在查找中使用 Eclipse 的正则表达式。
寻找:
(?=.*\d)\w+
代替:
STOP
一种可能的正则表达式是 grep '.*[0-9].*'