由於標題暗示我只想替換開始#並跳過以開頭的內容!這是代碼片段。更換時,它必須跳過#Admin - :它不是跳過與啓動字#我想替換以#開頭的字符串中的內容,如果它以#開始#它必須跳過它
String test = "Hello #Admin Welcome this is Your welcome page !#Admin This is #Admin"
注意!。
String out = test.replaceAll("#Admin", "MyAdministrator");
log.debug("OutPut: "+out);
OutPut: Hello MyAdministrator Welcome this is Your welcome page !MyAdministrator This is MyAdministrator
我該如何忽略以感嘆號開頭的單詞。
謝謝。
+1,打我3秒:) – jlordo
@jlordo是啊,這是非常接近! – Jerry
感謝它的作品:) – mgk22