2015-04-24 85 views
-3

一個模式有這些使用$,它有什麼用?將補充類似*

代碼

Pattern tempoPattern = Pattern.compile("s$"); 
    Matcher tempoMatcher = tempoPattern.matcher(normalizado); 

    Pattern bytesPattern = Pattern.compile("(k|m|g)b$"); 
+5

'$'匹配RegEx中字符串的結尾。 – Xufox

+10

根據文檔,這與行的結尾匹配。 http://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html – Jimmy

回答

相關問題