Maison > Questions et réponses > le corps du texte
校验一个字符串,是否包含ck
1.大小写无所谓,不做区分。
2.ck必须是连着的,可以出现在这个字符串的任何位置处。
求教~~
谢谢!
三叔2016-11-11 10:19:26
JS的,用/ck/i即可。
/ck/i.test('abcdef'); // false /ck/i.test('abckmm'); // true /ck/i.test('abCkmm'); // true /ck/i.test('abCKmm'); // true
Java的:
Pattern reg = Pattern.compile("ck", Pattern.CASE_INSENSITIVE); System.out.println(reg.matcher("abcdef").find()); // false System.out.println(reg.matcher("abckmm").find()); // true System.out.println(reg.matcher("abCkmm").find()); // true System.out.println(reg.matcher("abCKmm").find()); // true