'정규식'에 해당되는 글 2건
PHP 정규 표현식 문법
원문/출처 : http://smartjuho.tistory.com/entry/PHP-%EC%A0%95%EA%B7%9C-%ED%91%9C%ED%98%84%EC%8B%9D-%EB%AC%B8%EB%B2%95 ● ..임의의 한 문자. 줄바꿈 문자(/n)를 제외한 모든 문자를 대신할 수 있음예시.at // cat, hat, mat ... ● 반복+앞 글자가 한번 이상 반복될 수 있음예시(very )+nice = very nice, very very nice*앞 글자가 0번 이상 반복될 수 있음예시(very )*nice = nice, very nice, very very nice ● ??없거나 하나인 문자. 하위 표현식을 옵션으로 취급한다.예시ca?t = ct, cat, abcatd ● --범위를..
PHP | 2016. 5. 5. 21:11
PHP 정규표현식
원문/출처 : www.catswhocode.com/blog/15-php-regular-expressions-for-web-developers/번역/추철 : http://smartjuho.tistory.com/entry/PHP-%EC%A0%95%EA%B7%9C%ED%91%9C%ED%98%84%EC%8B%9D 정규표현식 문법정규식결과fooThe string “foo”^foo“foo” at the start of a stringfoo$“foo” at the end of a string^foo$“foo” when it is alone on a string[abc]a, b, or c[a-z]Any lowercase letter[^A-Z]Any character that is not a uppercase lette..
PHP | 2016. 5. 5. 21:09
RECENT COMMENT