我沒有很好的在正則表達式的數字之後的所有字符,但那些,但我在努力尋找一種方法來串的字母的情況下,從下改變資本在Java正則表達式找到
Java有一個非常好的方法稱爲toUpperCase(),但是,這並不能真正幫助我,原因有兩個。
首先,我想有一個這樣的正則表達式的參考,因爲我找不到任何地方,並且 其次,因爲它會改變所有字符的情況。
但有些情況下,我想保留一個較低的字符,以避免混淆,並使其更好看。
Good Bad
2i = 2I
2o = 2O
1st = 1ST
2nd = 2ND
etc...
是否可以添加條件?例如
"don't replace if the sequence 'st' appears after the number '1' even if there is a space between"
"don't replace if the sequence 'nd' appears after the number '2' even if there is a space between"
etc...
我想知道,如果有人可以幫助我產生一個正則表達式來選擇這些字符
預先感謝您