Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我想检查的文件,我想知道这个 txt 文件中“str2”之前的湿听“str1”appaers:
文件.txt
aaa aa aa aaa a a aa str1 aa aa a aaa aa a aaa aaa aa str2 aa a a aa aaa ...
我正在寻找一种可以在包含数百行的文件上使用的好的算法!ps 我还没有源代码,我还在规划阶段。
谢谢。
查看
if(str.indexOf("str1") != -1 && str.indexOf("str2") != -1 && str.indexOf("str1") < str.indexOf("str2")) return true;