java中功能的实现大部分都需要字符串类型,这次小编带大家看看正则表达式要如何匹配字符串。
例:怎么查询一个string中是否有y和f字符?
class Test { public static void main(String args[]) { String str = "For my money, the important thing " + "about the meeting was bridge-building"; char x = 'y'; char y = 'f'; boolean result = false; for (int i = 0; i< str.length; i++) { char z = str.charAt(i); //System.out.println(z); if (x == z || y == z) { result = true; break; } else result = false; } System.out.println(result); } }
示例大全
以上就是本篇文章的所有内容,不是很理解的话可以关注我们网站来里面寻找相关常见问题答案。
推荐阅读: