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.
如何更改以下字符串?我需要添加空格,例如:
"AnchorText"
"Anchor Text"
"anchortext"
"anchor text"
myString.replaceAll("(?i)(anchor)(text)", "$1 $2");
应该管用。不过,这并不是真正的代币化。