정규 표현 식 (5) - 특수 문자 인식 \ s \ w \ d

930 단어 정규 표현 식
package com.wy.regular;

public class RegularTest {

	public static void main(String[] args) {
		/*
		 *            (Predefined character) \s \w \d 
		 * \d        [0-9]
		 * \D       0-9      [^0-9]
		 * \s          [ \t
\x0B\f\r] * \t Tab ,
,\x0B whitespace,\f ,\r * \w A word character, [a-zA-Z_0-9], _ * \W [^\w] */ pri("
\r\t".matches("\\s{4}"));//true pri(" ".matches("\\S"));//false pri("a_8".matches("\\w{3}"));//true pri("abc888&^%".matches("[a-z]{1,3}\\d+[&^#%]+"));//true // matcher("\\") , \, \ " 。 // pri("\\".matches("\\"));// PatternSyntaxException pri("\\".matches("\\\\"));//true } public static void pri(Object object){ System.out.println(object); } }

좋은 웹페이지 즐겨찾기