-1
你好,我是新^0 *正則表達式是不是正則表達式中使用的Java
^0* -
g
^ asserts position at start of the string
0* matches the character 0 literally (case sensitive)
* Quantifier — Matches between zero and unlimited times, as many times as possible, giving back as needed (greedy)
Global pattern flags
g modifier: global. All matches (don't return after first match)
絃樂「3454tdfgffg」它應該返回false,因爲沒有零
下面是我的榜樣
public class RegExTest {
public static void main(String args[]){
String pattern ="^0*";
String instance = "3454tdfgffg";
// Create a Pattern object
Pattern r = Pattern.compile(pattern);
// Now create matcher object.
Matcher m = r.matcher(instance);
if (m.find()) {
System.out.println("Available");
}else
{
System.out.println("Not available");
}
}
}
,但它始終返回true,什麼都在我的實例變量寫
可以喲你請解決我,我錯了我
感謝反斜線:)它; S工作 –
不知道爲什麼這樣的人downvote,我已經返回我沒有多少知識 –
@SiddhpuraAmit我認爲這是因爲它也寫在你的問題中:'*量詞 - 在零和無限次之間匹配,儘可能多次,根據需要回饋(貪婪)'。無論如何,正則表達式可能是困難的,如果你是他們新手,所以我很高興答案:) – BackSlash