subString

substring
public String substring(int beginIndex)
返回一个新的 字符串,它是此字符串的一个子字符串。该子 字符串始于指定索引处的字符,一直到此字符串末尾。
例如:
"unhappy".substring(2) returns "happy"
"Harbison".substring(3) returns "bison"
"emptiness".substring(9) returns "" (an empty string)
参数:
beginIndex - 开始处的索引(包括)。
返回:
指定的子 字符串
抛出:
IndexOutOfBoundsException - 如果 beginIndex 为负或大于此 String 对象的长度。
--------------------------------------------------------------------------------
substring
public String substring(int beginIndex, int endIndex)
返回一个新 字符串,它是此字符串的一个子字符串。该子 字符串从指定的 beginIndex 处开始, endIndex:到指定的 endIndex-1处结束。
示例:
"hamburger".substring(3,8) returns " burge"
"smiles".substring(0,5) returns " smile"
参数:
beginIndex - 开始处的索引(包括)。
endindex 结尾处索引(不包括)。
返回:
指定的子 字符串
抛出:
IndexOutOfBoundsException - 如果 beginIndex 为负,或length大于 字符串长度。
 
 
String str = "UI;123;http";
str.substring(0,1); 截取的是U  不是UI  因为1不被包括在内
 
 String a[] = resultString.split(";"); 
得到的
a[0]是UI
a[1]是123
a[2]是http
 
 
 
 
 
 
 
 
 
 
以下内容为转载 http://heisetoufa.iteye.com/blog/227238

需求,把"01:大汽车",分成01和大汽车

有两种做法:一是substring

Java代码   收藏代码
    package test;  

      

    public class substringTest  

    {  

     public static void main(String args[])   

     {   

      String N = "01:大汽车";   

      String L="";   

      String R="";   

      int k= N.length();   

      for (int i = 0; i < N.length(); i++)   

      {   

       if (N.substring(i, i + 1).equals("|"))   

       {     

        L=N.substring(0,i).trim();   

        R=N.substring(i+1,k).trim();   

       }   

       else   

       {   

                    

       }   

       System.out.println(L);   

       System.out.println(R);   

      }  

     }  

    }   

 

 另外一种方法

Java代码   收藏代码
    public class splitTest  

    {  

        public static void main(String[] args)  

        {  

            String s = new String("01:大汽车");   

            String a[] = s.split(":");  

          

            System.out.println(a[0]);  

            System.out.println(a[1]);  

        }  

    }  

 

 split分割字母和数字,简单正则缝隙

 

 

Java代码   收藏代码
    public class Test01 {  

        public static void main(String[] args) {  

            String str = "one123";  

            String regex = "(?<=one)(?=123)";  

            String[] strs = str.split(regex);  

            for(int i = 0; i < strs.length; i++) {  

                System.out.printf("strs[%d] = %s%n", i, strs[i]);  

            }  

        }  

    }  

 

 

 

 

substring讲解:

s=s.substring(int begin);截取掉s从首字母起长度为begin的字符串,将剩余字符串赋值给s;

s=s.substring(int begin,int end);截取s中从begin开始至end结束时的字符串,并将其赋值给s;

split讲解:

java.lang.string.split
split 方法
将一个字符串分割为子字符串,然后将结果作为字符串数组返回。
stringObj.split([separator,[limit]])
参数
stringObj
必选项。要被分解的 String 对象或文字。该对象不会被 split 方法修改。
separator
可选项。字符串或 正则表达式 对象,它标识了分隔字符串时使用的是一个还是多个字符。如果忽

略该选项,返回包含整个字符串的单一元素数组。
limit
可选项。该值用来限制返回数组中的元素个数。

说明
split 方法的结果是一个字符串数组,在 stingObj 中每个出现 separator 的位置都要进行分解

。separator 不作为任何数组元素的部分返回。

split 的实现直接调用的 matcher 类的 split 的方法。“ . ”在正则表达式中有特殊的含义,因此我们使用的时候必须进行转义。

Java代码   收藏代码
  1. public static void main(string[] args) {  
  2. string value = "192.168.128.33";  
  3. string[] names = value.split("\\.");  
  4. for (int i = 0; i < names.length; i++) {  
  5. system.out.println(names[i]);  
  6. }}  

 如果用竖线“|”分隔的话,将出现不可得到的结果,必须改为“\\|” 

 
 
 

你可能感兴趣的:(substring)