A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

高手解答一下,不是我的面试题。。。。。

5 个回复

倒序浏览
变数组拆半查找?
回复 使用道具 举报
/*
* 你想在字符串中"aasdasfsdghyerejtwieypg;lmgf;lm;lmbmmfdmgjsjotoopwop"
* 查找lmgf
*/
public class Test1{
        public static void main(String[] args) {
                String string ="aasdasfsdghyerejtwieypg;lmgf;lm;lmbmmfdmgjsjotoopwop";
                boolean b=string.contains("lmgf");         //         看看字符串中是否包含“lmgf”
                if (b==true) {                                                //如果包含 就返回字符串“lmgf”在字符串中出现的位置
                        int a =string.indexOf("lmgf");
                        System.out.println(a);
                }else{                                                                //如果不包含  
                        System.out.println("您要查找的字符串不存在");
                }
        }
}

我自己写的 你看看 很简单的。

评分

参与人数 1技术分 +1 收起 理由
李小然 + 1

查看全部评分

回复 使用道具 举报
学习             
回复 使用道具 举报
  1. class A
  2. {
  3.         public static void main(String[] args)
  4.         {
  5.                  Method_2();
  6.                  
  7.         }
  8.         public static void Method_2()
  9.         {
  10.                 String str = "我是一只小小鸟";
  11.                 int x= str.indexOf("一");
  12.                 sop(x);{:3_64:}
  13.         }
  14.         public static void sop(Object obj)
  15.         {
  16.                 System.out.println(obj);
  17.         }
  18.        

  19. }
复制代码

此处只给你查找到了他的位置,,共同进步,嘻嘻
回复 使用道具 举报
怎么都是找字符串的子串啊????
题目不是在很多字符串里面找到对应的字符串吗?????
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马