字符串区域匹配-Java实例
如何在字符串中匹配区域 ?
解决方法
下面的例子使用regionMatches()方法确定两个字符串区域匹配。
public class StringRegionMatch{ public static void main(String[] args){ String first_str = "Welcome to Microsoft"; String second_str = "I work with Microsoft"; boolean match = first_str. regionMatches(11, second_str, 12, 9); System.out.println("first_str[11 -19] == " + "second_str[12 - 21]:-"+ match); } }
结果
上面的代码示例将产生以下结果。
first_str[11 -19] == second_str[12 - 21]:-true