编写java代码,输入一个字符串以及需要查找的字符串,显示所有出现该字符串的位置。

 我来答
匿名用户
2013-11-16
展开全部
import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class RegexTestHarnessV5 {

public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
while (true) {
System.out.printf("输入你要查找的文字: ");
Pattern pattern = Pattern.compile(scanner.nextLine());
System.out.printf("输入字符串: ");
Matcher matcher = pattern.matcher(scanner.nextLine());
boolean found = false;
while (matcher.find()) {
System.out.printf("找到 \"%s\" 开始下标 %d 结束下标 %d.%n",
matcher.group(), matcher.start(), matcher.end());
found = true;
}
if (!found) {
System.out.printf("没有找到.%n");
}
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-11-16
展开全部
public static void main(String[] args) { String str1 = "ajglagjejlag"; String str2 = "ag"; int countLocation = 0; if (str1.contains("ag")) { String[] strings = str1.split(str2); for (int i = 0; i < strings.length; i++) { System.out.println(strings[i]); if (i == 0) { countLocation += strings[i].length(); } else { countLocation = countLocation + strings[i].length() + str2.length(); } System.out.println(str1+"中,第" + (i + 1) + "个匹配的" + str2 + "开始位置:" + countLocation); } } } 根据你的需要修改吧~
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-11-16
展开全部
试试吧!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-11-16
展开全部
用正则表达式
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式