得到字符串里面的所有大写字母(DEMO_002)

得到字符串里面的所有大写字母(DEMO_002)

// 得到字符串裡面的所有大寫字母

public class TestUpper{
 public static void main(String[] ages){
  String str="I/*L3O2VlsfssfEdJsdfsfAsf1sdfsVf6sAfssdffs/f*sf-sdf#sf$s%f3g5sdg4segswd";
  System.out.println(str.replaceAll("[^A-Z]",""));        //把所有不是大寫字母的字符全部替換為空
 }
}
 

//運行結果
//ILOVEJAVA


你可能感兴趣的:(得到字符串里面的所有大写字母(DEMO_002))