- RegularExpression/2011년스터디 . . . . 3 matches
[A-Za-Z0-9]
[]대괄호. == 찾을 문자들을 넣으면 됨. a-zA-Z 라던지, 0-9라던지.
"http://www.naver.com www.naver.com naver.com google.co.kr http://kio.zc.bz/Lecture/regexp.html#chap05".match(/(http:\/\/)?([a-zA-Z]+\.)+[a-zA-Z]+\/?([^\s]+)*/g)
- 정규표현식/스터디/문자집합으로찾기/예제 . . . . 3 matches
1. {{{./[a-zA-Z][a-zA-Z]........}}}
1. {{{[^a-zA-Z0-9]}}}
- 정규표현식/스터디/메타문자사용하기 . . . . 2 matches
||{{{[:alnum:]}}} ||{{{[a-zA-Z0-9]}}} ||
||{{{[:alpha:]}}} ||{{{[a-zA-Z]}}} ||
- Google/GoogleTalk . . . . 1 match
$text =~ s/[a-zA-Z_|;:<>,?.~\*\^\$\[\]\-\+()\/=]//g;
- 정규표현식/스터디/문자집합으로찾기 . . . . 1 match
* ex ) [\\\[\]%\-&^*$a-zA-Z0-9]{{{[A-z][a-f]}}} 로 찾을수 있다.
* 문자 범위 정의 : {{{[A-Za-z])}}}
- 토이/메일주소셀렉터/김남훈 . . . . 1 match
[a-zA-Z] { printf("%s ", yytext); }
letter [-_0-9A-Za-z]
domain_name [0-9A-Za-z][-0-9A-Za-z]*[0-9A-Za-z]
Found 6 matching pages out of 7555 total pages (5000 pages are searched)
You can also click here to search title.