Here you can find the source of substringMatch(CharSequence str, int index, CharSequence substring)
Parameter | Description |
---|---|
str | the original string (or StringBuilder) |
index | the index in the original string to start matching against |
substring | the substring to match at the given index |
public static boolean substringMatch(CharSequence str, int index, CharSequence substring)
//package com.java2s; public class Main { /**/*from ww w . j a v a 2 s. co m*/ * Test whether the given string matches the given substring * at the given index. * @param str the original string (or StringBuilder) * @param index the index in the original string to start matching against * @param substring the substring to match at the given index */ public static boolean substringMatch(CharSequence str, int index, CharSequence substring) { for (int j = 0; j < substring.length(); j++) { int i = index + j; if (i >= str.length() || str.charAt(i) != substring.charAt(j)) { return false; } } return true; } }