java截取字符串,截串,substring和split,分割字母和数字,正则缝隙

关键字: java截取字符串 截串 substring

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

有两种做法:一是substring

Java代码

  1. package test;  
  2.   
  3. public class substringTest  
  4. {  
  5. public static void main(String args[])   
  6.  {   
  7. "01:大汽车";   
  8. "";   
  9. "";   
  10. int k= N.length();   
  11. for (int i = 0; i < N.length(); i++)   
  12.   {   
  13. if (N.substring(i, i + 1).equals("|"))   
  14.    {     
  15. 0,i).trim();   
  16. 1,k).trim();   
  17.    }   
  18. else   
  19.    {   
  20.                 
  21.    }   
  22.    System.out.println(L);   
  23.    System.out.println(R);   
  24.   }  
  25.  }  
  26. }   
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);
}
}
}

 另外一种方法是CSDN上一位叫老六的人给我写的

package Test

Java代码

  1. public class splitTest  
  2. {  
  3. public static void main(String[] args)  
  4.     {  
  5. new String("01:大汽车");   
  6. ":");  
  7.       
  8. 0]);  
  9. 1]);  
  10.     }  
  11. }  
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代码

  1. public class Test01 {  
  2. public static void main(String[] args) {  
  3. "one123";  
  4. "(?<=one)(?=123)";  
  5.         String[] strs = str.split(regex);  
  6. for(int i = 0; i < strs.length; i++) {  
  7. "strs[%d] = %s%n", i, strs[i]);  
  8.         }  
  9.     }  
  10. }  
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. }}  
public static void main(string[] args) {
string value = "192.168.128.33";
string[] names = value.split("\\.");
for (int i = 0; i < names.length; i++) {
system.out.println(names[i]);
}}

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