String 클래스 에서 자주 사용 하 는 방법(3)

  • 문자열 에서 지정 한 위 치 를 바 꾸 는 문자
  • 지정 한 문자열 이 모두 정규 표현 식 과 일치 하 는 지 판단 합 니 다
  • public class StringMethod03 {
         
        @Test
        public void  test(){
         
            String s="       ";
    
            System.out.println(s.replace(' ',' '));//                
    
            System.out.println(s.replace("  ","  "));//                
    
            String s1="123hello456world";
    
            System.out.println(s1.replaceAll("\\d+",",").replaceAll("^,",""));//                 
    
            String s2="1234";
            System.out.println(s2.matches("\\d+"));//                      true or false
    
    
            String s3="0791-134566";
            System.out.println(s3.matches("0791-\\d{7,8}")); //            
    
    
        }
    }
    
        
    
           
           
    hello,world
    true
    false
    

    좋은 웹페이지 즐겨찾기