博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java代码---indexOf()方法
阅读量:6120 次
发布时间:2019-06-21

本文共 584 字,大约阅读时间需要 1 分钟。

总结:indexOf(String str,int index)方法.从参数指定位置开始,如果index值超过了字符串长度,则返回-1

package com.a.b;import java.io.*;public class Chen {	public static void main(String[] args) throws IOException {		//线程。继承。抽象		String test="After learning the material";		String theStr="arn";		int index=0,theCount=0;		index=test.indexOf(theStr);		while(index>=0){			theCount=theCount+1;					index=index+theStr.length();						index=test.indexOf("arn",index);								}		System.out.println(index);	//	System.out.println("the are "+theCount+" 'arn' in testStr.");	}}

  

转载于:https://www.cnblogs.com/langlove/p/3489762.html

你可能感兴趣的文章
vue实现点击展开,点击收起
查看>>
如何使frame能居中显示
查看>>
第k小数
查看>>
构建之法阅读笔记三
查看>>
写给对前途迷茫的朋友:五句话定会改变你的人生
查看>>
并行程序设计学习心得1——并行计算机存储
查看>>
JAVA入门到精通-第86讲-半双工/全双工
查看>>
bulk
查看>>
js document.activeElement 获得焦点的元素
查看>>
C++ 迭代器运算
查看>>
【支持iOS11】UITableView左滑删除自定义 - 实现多选项并使用自定义图片
查看>>
day6-if,while,for的快速掌握
查看>>
JavaWeb学习笔记(十四)--JSP语法
查看>>
【算法笔记】多线程斐波那契数列
查看>>
java8函数式编程实例
查看>>
jqgrid滚动条宽度/列显示不全问题
查看>>
在mac OS10.10下安装 cocoapods遇到的一些问题
查看>>
angularjs表达式中的HTML内容,如何不转义,直接表现为html元素
查看>>
css技巧
查看>>
Tyvj 1728 普通平衡树
查看>>