중국어 정규 일치

1325 단어 정칙
중국어 한자 의 유 니 코드 범위: \ u4e 00 - \ u9fa 5
전역 문자 의 범 위 는 \ ufe 30 - \ uffa 0 입 니 다.
일치 하 는 두 글자: [^ \ x00 - \ xff]
          :n[s| ]*r



  HTML        :/<(.*)>.*</1>|<(.*) />/



            :(^s*)|(s*$)
import java.util.regex.*;

public class Main{

    public static void main(String args[]){

        String str  = "  fuc";

        String res = str.replaceAll("[\u4e00-\u9fa5]","*");

        Pattern p = Pattern.compile("[\u4e00-\u9fa5]+");

        Matcher matcher = p.matcher(str);

        matcher.find();

        String res=matcher.group();

        System.out.println(res);

    }

}

    :

  

 

좋은 웹페이지 즐겨찾기