📜  第 n 次出现的 java index - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:41.146000             🧑  作者: Mango

代码示例1
public static int ordinalIndexOf(String str, String substr, int n) {
    int pos = str.indexOf(substr);
    while (--n > 0 && pos != -1)
        pos = str.indexOf(substr, pos + 1);
    return pos;
}