我必須在字符串中找到*的出現位置,並且根據字符串中*的位置必須執行某些操作。正則表達式來查找字符的位置
if(* found in the beginning of the String) {
do this
}
if(* found in the middle of the String) {
do this
}
if(* found at the end of the String) {
do this
}
我使用matcher.find()
選項,但它沒有給出所需的結果。
你爲什麼不用'indexOf()'? – TheLostMind
[Java:獲取字符串匹配位置的方法?]的可能重複(http://stackoverflow.com/questions/2615749/java-method-to-get-position-of-a-match-in-字符串) – Fundhor
「它沒有給出預期的結果」它給你什麼結果?對於什麼輸入?期望的結果是什麼? –