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.
我试图在一个很长的字符串中找到与模式匹配的所有文本,然后获取文本并将其应用于将传递的变量等等。我尝试了该方法,但是在将其传递给另一种方法replaceAll时,我开始出现奇怪的行为。$1有没有其他方法可以做到这一点,或者我做错了什么?
replaceAll
$1
text = string.replaceAll("(PART)", "$1");
String.replaceAll()接收正则表达式作为第一个参数。
String.replaceAll()
您可能想尝试一下String.replace(),因为您可以传递要替换的“普通”字符串。
String.replace()