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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© nishi5151 中级黑马   /  2014-12-12 22:20  /  877 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

public class StringExplorer {
        /**
         * 定位字符
         */
        public void locateChar(String full, char c) {
                System.out.print(c + "出现的位置是: ");
                for (int i = 0; i < full.length(); i++) {
                        if (c == full.charAt(i)) {
                                System.out.print(i + "\t");
                        }
                }
        }

        /**
         * 定位字符串
         */
        public void locateString(String full, String s) {
                int index = 0;
                int i = index;
                int length = full.length();
                System.out.print(s + "出现的位置是: ");
                do {
                        index = full.indexOf(s, i);
                        if (index == -1) {
                                break;
                        }
                        System.out.print(index + "   ");
                        i = index + s.length();
                } while (i <= length);
        }

        public static void main(String[] args) {
                StringExplorer se = new StringExplorer();
                Scanner input = new Scanner(System.in);
                System.out.println("请输入一段字符: ");
                String full = input.next();
                System.out.println("请输入要查询的字符串: ");
                String s = input.next();
                se.locateString(full, s);
        }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马