在Java中,你可以使用正則表達式來提取括號中的字符串。以下是一個簡單的示例代碼:
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Main {
public static void main(String[] args) {
String input = "這是一個測試(獲取括號中的字符串)的示例";
Pattern pattern = Pattern.compile("\\((.*?)\\)");
Matcher matcher = pattern.matcher(input);
if (matcher.find()) {
String result = matcher.group(1);
System.out.println(result);
} else {
System.out.println("未找到匹配的字符串");
}
}
}
在這個示例中,我們使用正則表達式 \((.*?)\)
匹配括號中的字符串。然后使用Matcher類的find()方法查找匹配的字符串,如果找到了就使用group(1)方法獲取括號中的字符串。如果沒有找到匹配的字符串,就輸出"未找到匹配的字符串"。你可以根據實際需要修改正則表達式來適應不同的情況。