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.
该字符串可能包含“abc @ xyz 1234-4321”之类的字符,我需要正则表达式使用最终构建器中的文本替换操作将引用字符串中的字符替换为另一个字符串。
在此先感谢,任何帮助将不胜感激。
“。*?” 会在两个“之间找到任何东西。
点匹配所有内容,而 * 告诉它您想要在零次和多次出现之间的某个位置。然后,您可以将其替换为“yourstring”。
如果您不想写“yourstring”,您也可以使用捕获组“(.*?)”,但老实说,这样做有点过头了。