定义一个字符串“Hello World ! Coffee”,将此字符串拆分成Hello,World,Coffee三个单词

时间:2021-06-03 10:54:53

 /** 定义一个字符串“Hello World  ! Coffee”,将此字符串拆分成Hello,World,Coffee三个单词
 * @author 马涛
 *
 * April 14th,2009
*/
public class SplitDemo
{
  public static void main(String[] args)
  {
     String str = "Hello World  ! Coffee";
     //正则表达式/p{Punct} 代表标点符号:!"#$%&'()*+,-./:;<=>?@[/]^_`{|}~
     //正则表达式/p{Space} 代表空格
     String[] str1 =str.split("
//p{Punct}|//p{Space}|!");
     //String[] str1 =str.split("
//W+"); /W是数字1-9 字母a-z A-Z   /W+字母或连续的字母或数字
     String[]
     for(int i =0; i<str1.length; i++)
     {
       System.out.println(str1[i]);
     }
  }
}