阅读量:0
strstr
是 C 语言中的字符串处理函数,用于在一个字符串中查找另一个子字符串。在 Java 中,你可以使用 String
类的 indexOf
方法来实现类似的功能。为了解决 Java 中 strstr
的兼容性问题,你可以直接使用 String
类的 indexOf
方法。
以下是一个简单的示例:
public class Main { public static void main(String[] args) { String str = "Hello, world!"; String subStr = "world"; int index = str.indexOf(subStr); if (index != -1) { System.out.println("子字符串 \"" + subStr + "\" 在主字符串 \"" + str + "\" 中的位置是: " + index); } else { System.out.println("子字符串 \"" + subStr + "\" 不在主字符串 \"" + str + "\" 中"); } } }
在这个示例中,我们使用 String
类的 indexOf
方法来查找子字符串 "world"
在主字符串 "Hello, world!"
中的位置。如果找到了子字符串,indexOf
方法会返回子字符串的起始索引;否则,它会返回 -1
。这样,你就可以避免使用 C 语言中的 strstr
函数,从而解决兼容性问题。