- 정규표현식/스터디/문자집합으로찾기 . . . . 5 matches
* {{{또한 다음과 같이 [0-9] = [0123456789]와 같이 사용하며 문자 또한 지원한다. 축약법은 하이픈(-)을 붙이는 방법으로 [A-Z][a-z] 이방법은 아스키 코드 방식을 따르며 축약시킬 경우 [a-A]는 역순이므로 되지 않는다. 또한 리스트([])안에서는 또다른 리스트([])와 역슬래시(\), 하이픈(-)을 제외하고는 모두 일반 문자와 같이 인식하므로 특수문자 %&^*$ 를 단순히 리스트 안에 나열하는것으로 검색할수 있다 리스트 안에서 리스트([])를 검색하는 방법은 역슬래시를 붙여 이스케이프를 시켜야한다.}}}
* ex ) [\\\[\]%\-&^*$a-zA-Z0-9]{{{[A-z][a-f]}}} 로 찾을수 있다.
* ex : {{{[^A-Zaz]}}}, {{{[^0-9]}}}
* 문자 범위 정의 : {{{[A-Za-z])}}}
* 제외하고 찾기 : {{{[^A-Z]}}}
- 토이/메일주소셀렉터/김남훈 . . . . 5 matches
[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]
- RegularExpression/2011년스터디 . . . . 4 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)
- OurMajorLangIsCAndCPlusPlus/ctype.h . . . . 3 matches
|| int isalpha(int c) || 주어진 문자가 알파벳 인지 검사한다. A-Z a-z ||
|| int islower(int c) || 소문자인지 검사한다. a-z ||
|| int isupper(int c) || 대문자인지 검사한다. A-Z ||
|| int isalnum(int c) || 주어진 문자가 알파벳 또는 숫자인지 검사한다. A-Z a-z 0-9 ||
- 정규표현식/스터디/메타문자사용하기 . . . . 3 matches
||{{{[:alnum:]}}} ||{{{[a-zA-Z0-9]}}} ||
||{{{[:alpha:]}}} ||{{{[a-zA-Z]}}} ||
||{{{[:lower:]}}} ||{{{[a-z]}}} ||
||{{{[:upper:]}}} ||{{{[A-Z]}}} ||
- .bashrc . . . . 1 match
nf=$(echo $filename | tr A-Z a-z)
- Google/GoogleTalk . . . . 1 match
$text =~ s/[a-zA-Z_|;:<>,?.~\*\^\$\[\]\-\+()\/=]//g;
Found 7 matching pages out of 7557 total pages (3390 pages are searched)
You can also click here to search title.