6个回答
展开全部
String s = "Are you OK?";
//在字符串中元素所在的位置
int i = s.indexOf("O");
//在字符串中元素所在的位置
int i = s.indexOf("O");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
String str = new String("abcdefghijklmn");
System.out.println(str.indexOf("e"));
这里打印第一个e所在的位置,从0开始。
indexOf方法有好多重载,自己看API。
System.out.println(str.indexOf("e"));
这里打印第一个e所在的位置,从0开始。
indexOf方法有好多重载,自己看API。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你好!
String s=new String("hello");
int i=s.indexOf("o");
i 就是你要得到的元素位置!
String s=new String("hello");
int i=s.indexOf("o");
i 就是你要得到的元素位置!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
第一种:
class Test {
public static void main(String[] args) {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
boolean isExit = false;
boolean inputed = false;
String lastLine = null;
try{
while(!isExit) {
String line = br.readLine();
if("q".equalsIgnoreCase(line)) {
isExit = true;
}else {
if(!inputed) {
lastLine = line;
inputed = true;
System.out.println(line);
System.out.print("please input key word: ");
}else {
int i = lastLine.indexOf(line);
inputed = false;
System.out.println("The index is :" + i);
}
}
}
}catch(IOException e) {
e.printStackTrace();
}
}
}
包我就不帮你引了,都是手敲的,如有拼写问题可稍微调试一下。
第二种:
//导包
import java.util.Scanner;
public class TestScanner{
public static void main(String [] args){
Scanner input = new Scanner(System.in); //创建Scanner对象 接受从控制台输入
System.out.println("输入一个字符串:");
String s = input.next(); //接受String型
System.out.println(s); //输出结果
String ss = "i"; // 字符串中的元素
int index = s.indexOf(ss); //确定字符串中的元素"i"的位置,s中不存在则返回-1
}
}
class Test {
public static void main(String[] args) {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
boolean isExit = false;
boolean inputed = false;
String lastLine = null;
try{
while(!isExit) {
String line = br.readLine();
if("q".equalsIgnoreCase(line)) {
isExit = true;
}else {
if(!inputed) {
lastLine = line;
inputed = true;
System.out.println(line);
System.out.print("please input key word: ");
}else {
int i = lastLine.indexOf(line);
inputed = false;
System.out.println("The index is :" + i);
}
}
}
}catch(IOException e) {
e.printStackTrace();
}
}
}
包我就不帮你引了,都是手敲的,如有拼写问题可稍微调试一下。
第二种:
//导包
import java.util.Scanner;
public class TestScanner{
public static void main(String [] args){
Scanner input = new Scanner(System.in); //创建Scanner对象 接受从控制台输入
System.out.println("输入一个字符串:");
String s = input.next(); //接受String型
System.out.println(s); //输出结果
String ss = "i"; // 字符串中的元素
int index = s.indexOf(ss); //确定字符串中的元素"i"的位置,s中不存在则返回-1
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询