wps笔试题目,实现java中indexof函数
程序员文章站
2022-03-27 20:22:22
...
关于wps笔试中实现indexof方法的一种写法。
package com.akon; import java.util.regex.Matcher; import java.util.regex.Pattern; public class test { private String input; public int indexof(String str){ int i=-1; String regex=".*?"+str; Pattern p=Pattern.compile(regex); Matcher m=p.matcher(input); if(m.find()){ i=m.group().length()-str.length(); } return i; } public test(String string){ this.input=string; } public static void main(String args[]){ test t=new test("abcdsas23sa"); System.out.print(t.indexof("23")); } }
结果:7
上一篇: Aspose.Words使用教程之如何在文档中添加水印
下一篇: java_图片_文字_加水印