例如:Stirng str=“a+b*c/d”; 獲取出a,b,c,d放入數組中
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Test {
public static void main(String[] args){
String str="a+b*c/d";
Pattern p=Pattern.compile("[a-z]");//定義一個正則表達式的匹配規則
Matcher m=p.matcher(str); //進行匹配
String [] value=new String[4];//定義一個數組
int i=0;//數組下標
while(m.find()){// 是否尋到匹配字符
System.out.PRintln("尋到的結果 "+m.group());
value[i]=m.group();//添加到數組中
i++;//下標加1
}
//輸出數組元素
for(int j=0;j<value.length;j++){
System.out.println("value["+j+"] =" +value[j]);
}
}
}