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.
我的论坛上有一些损坏的 URL,例如:
[url = https: //example.com/? post = qwerty]
和
[/ url]
我必须删除空格。我知道,如何使用正则表达式替换扩展来查找这些字符串:
/\[url = .*?\]
但我不知道如何用没有空格的数据替换它们。有人可以帮我吗?:)
一旦你得到一个字符串,就从 url 开始的地方挑选出子字符串。所以它应该是这样的:
String substring = https: //example.com/? post = qwerty
然后对于这个子字符串,用“”替换空格。查找空间的正则表达式是:\s. 现在只需将这些替换为 "" 即空字符串。
\s