我試圖將兩個字符串相互比較。一個包含例如:比較兩個字符串中的值
String x =" aa bb cc dd ee "
,另一種:
String y =" aa bb "
現在,我想這樣做
if (any values from String x EXISTS IN String y)
if (y.matches(???)){System.out.println("true");}
else{System.out.println("false");}
我知道我可以使用正則表達式做相反,像這樣:
if (x.matches(".*"+y+".*")){do something}
B ut我想知道是否有任何方法來檢查字符串x中的任何值是否與String y匹配。
如果你的代碼返回true,如果'x =「aa bb cc dd ee」'和'y = ee aa'? – Makoto