java多线程    Java入门    vsftp    ftp    linux配置    centos    FRP教程    HBase    Html5缓存    webp    zabbix    分布式    neo4j图数据库    

java查找字符串

java中查找一个字符串是否包含一个字符,或者一段字符串java.lang.String
indexOf方法

package com.java.lang;

public class StringX {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		java.lang.String a = "my name is yuexiaosheng,my blog is java-er.com";
	    int isPos = a.indexOf("is");
	    int islastPos = a.lastIndexOf("is");
	    
	    System.out.println("first 'is' postion is " + isPos);
	    System.out.println("last 'is' postion is " + islastPos);
	    
	    int haswen = a.indexOf("?");
	    System.out.println(haswen);
	    if(haswen==-1){
	    	System.out.println("字符串中没有问号");
	    }
	  
	}

}

 int indexOf(int ch)

  返回指定字符在此字符串中第一次出现处的索引。

  int indexOf(int ch, int fromIndex)

  从指定的索引开始搜索,返回在此字符串中第一次出现指定字符处的索引。

  int indexOf(String str)

  返回第一次出现的指定子字符串在此字符串中的索引。

  int indexOf(String str, int fromIndex)

  从指定的索引处开始,返回第一次出现的指定子字符串在此字符串中的索引。

  String intern()

  返回字符串对象的规范化表示形式。

  int lastIndexOf(int ch)

  返回最后一次出现的指定字符在此字符串中的索引。

  int lastIndexOf(int ch, int fromIndex)

  从指定的索引处开始进行后向搜索,返回最后一次出现的指定字符在此字符串中的索引。

  int lastIndexOf(String str)

  返回在此字符串中最右边出现的指定子字符串的索引。

  int lastIndexOf(String str, int fromIndex)

  从指定的索引处开始向后搜索,返回在此字符串中最后一次出现的指定子字符串的索引。

  int length()

  返回此字符串的长度。


This entry was posted in JAVA and tagged , , . Bookmark the permalink.
月小升QQ 2651044202, 技术交流QQ群 178491360
首发地址:月小升博客https://java-er.com/blog/java-index-of/
无特殊说明,文章均为月小升原创,欢迎转载,转载请注明本文地址,谢谢
您的评论是我写作的动力.

Leave a Reply