Java正則表達(dá)式的基本用法有以下幾種:
匹配:使用matches()
方法來判斷一個(gè)字符串是否與正則表達(dá)式匹配。例如:String regex = "abc"; String str = "abcdef"; boolean isMatch = str.matches(regex);
查找:使用find()
方法來在一個(gè)字符串中查找與正則表達(dá)式匹配的子串。例如:Pattern pattern = Pattern.compile("abc"); Matcher matcher = pattern.matcher("abcdef"); boolean isFound = matcher.find();
替換:使用replaceAll()
方法或replaceFirst()
方法來替換匹配的字符串。例如:String regex = "abc"; String str = "abcdef"; String replacedStr = str.replaceAll(regex, "123");
分割:使用split()
方法根據(jù)正則表達(dá)式來分割字符串。例如:String regex = "\\s+"; String str = "hello world"; String[] parts = str.split(regex);
提?。菏褂?code>group()方法來提取匹配的子串。例如:Pattern pattern = Pattern.compile("(\\d{4})-(\\d{2})-(\\d{2})"); Matcher matcher = pattern.matcher("2021-01-01"); if (matcher.matches()) { String year = matcher.group(1); String month = matcher.group(2); String day = matcher.group(3); }
匹配修飾符:可以在正則表達(dá)式中使用修飾符來改變匹配的行為。例如:Pattern pattern = Pattern.compile("abc", Pattern.CASE_INSENSITIVE); Matcher matcher = pattern.matcher("ABCDEF"); boolean isMatch = matcher.matches();
字符轉(zhuǎn)義:可以使用 \
來轉(zhuǎn)義特殊字符。例如:String regex = "\\.";
以上是Java正則表達(dá)式的一些基本用法,還可以使用更多的正則表達(dá)式語法來實(shí)現(xiàn)更復(fù)雜的匹配和處理邏輯。