2012-06-14 95 views
-2

如何更改以下字符串?我需要添加空格,例如:如何標記字符串

  • "AnchorText""Anchor Text"
  • "anchortext""anchor text"
+0

[String.split()?](http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html#split%28java.lang.String%29) – JMelnik

+0

我*試着編輯問題,但Rasmey - 你應該添加更多的細節。 – Kobi

+1

什麼?有沒有邏輯?或者你只需​​要一個特定字符串的硬代碼? 「錨文本」爲「錨文本」。 – manurajhada

回答

4
myString.replaceAll("(?i)(anchor)(text)", "$1 $2"); 

應該工作。儘管如此,這並不令人信服。