리자

[펌] 정규식 함수

· 14년 전 · 2048
함수 코드예제 코드설명
Array RegExp.exec (to be checked) var myRe=/d(b+)(d)/ig;
var myArray = myRe.exec("cdbBdbsbz");
/d(b+)(d)/ig

cdbBdbsbzⓥ

myArray.index =1 ; (처음으로 매칭되는 위치, 컴터가 늘 그렇듯 위치는 0번째부터 센다.)
myArray.input = cdbBdbsbz; (체크할 대상)
myArray[0] = dbBd;(검사에 통과한 부분)
myArray[1] = bB;(1번째 괄호에서 체크된 부분)
myArray[2] = d;(2번째 괄호에서 체크된 부분)

myRe.lastIndex =5 ; (다음번 체크를 하기위한 위치.)
myRe.ignoreCase = true; (/i 플래그 체크)
myRe.global = true; (/g 플래그 체크)
myRe.multiline = false; (/m 플래그 체크)

RegExp.$_ = cdbBdbsbz;(입력한 스트링)
RegExp.$1 = bB;(1번째 괄호에서 체크된 부분 )

boolean RegExp.test(to be checked) var myRe=/d(b+)(d)/ig;
var checked = myRe.test("cdbBdbsbz");
document.write("checked = " + checked +";<br>");
/d(b+)(d)/ig

cdbBdbsbzⓥ

실행결과: checked = true;

String RegExp.toString() var myRe=/d(b+)(d)/ig;
var str = myRe.toString();
document.write(str);
실행 결과: /d(b+)(d)/ig
String String.replace(pattern or string, to be replaced) var str = "abcdefe";
document.write(str.replace("e" , "f")); 실행 결과: abcdffe

e가 2번 있지만, 첫번째 인자가 정규식이 아니라 문자열일 경우는 첫번째 것만 바꾼다.
var str = "aba";
document.write(str.replace(/^a/ , "c")); 실행 결과: cba
var re = /(\w+)\s(\w+)/;
var str = "John Smith";
newstr = str.replace(re, "$2, $1");
document.write(newstr) 실행 결과: Smith, John

re에 의해서 찾아진 문자열 들은 re에서 ()로 표현된 순서대로 $1, $2와 같이 변수로 저장된다.
var re = /\s(?:http|https):\/\/\S*(?:\s|$)/g;
var str = "url is http://iilii.egloos.com/ !!\n";
str += "blah home: http://www.blah.co.kr";
newstr = str.replace(re, function (str,p1,offset,s) {
return "<a href='" + str + "'>" + str + "</a>";
}
).replace(/\n/, "<br>");
document.write(newstr); url is http://iilii.egloos.com/ !!
blah home: http://www.blah.co.kr

str: 찾은 문자열
p1: ()에서 검색된 1번째 문자열. 마찬가지로 p2,p3 등도 가능
offset: str을 찾은 위치
s : 원본 문자열.

Array String.match(regular expression var str = "ABCdEFgHiJKL";
var myResult = str.match(/[a-z]/g );
for(var cnt = 0 ; cnt < myResult.length; cnt++){
document.write(cnt +":" + myResult[cnt] +"<br>");
}

document.write("비교<br>");

var str = "ABCdEFgHiJKL";
var myResult = /[a-z]/g.exec(str);
for(var cnt = 0 ; cnt < myResult.length; cnt++){
document.write(cnt +":" + myResult[cnt] +"<br>");
} 실행 결과:
0:d
1:g
2:i
비교
0:d

String.match(RegExp) =>g flag가 있어도 다 찾아낸다.
RegExp.exec(String) =>g flag가 있으면, 한 개만 찾고 끝낸다.
Array String.split([separator[, limit]]) var str = "ABCdEFgHiJKL";
var myResult = str.split(/[a-z]/g , 3);
for(var cnt = 0 ; cnt < myResult.length; cnt++){
document.write(cnt +":" + myResult[cnt] +"<br>");
} 실행 결과:
0:ABC
1:EF
2:H

주어진 문자열을 separator를 기준으로 limit 만큼 자른다.<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
14년 전 조회 3,040
14년 전 조회 1,141
14년 전 조회 1,383
14년 전 조회 2,247
14년 전 조회 2,652
14년 전 조회 1,715
14년 전 조회 1,851
14년 전 조회 1,171
14년 전 조회 1,491
14년 전 조회 1,492
14년 전 조회 2,234
14년 전 조회 1,539
14년 전 조회 1,214
14년 전 조회 1,293
14년 전 조회 659
14년 전 조회 1,353
14년 전 조회 1,249
14년 전 조회 1,275
14년 전 조회 1,810
14년 전 조회 2,687
14년 전 조회 1,745
14년 전 조회 1,542
14년 전 조회 1,903
14년 전 조회 1,141
14년 전 조회 1,174
14년 전 조회 1,427
14년 전 조회 1,635
14년 전 조회 1,256
14년 전 조회 1,572
14년 전 조회 2,171
14년 전 조회 1,155
14년 전 조회 1,504
14년 전 조회 1,502
14년 전 조회 1,206
14년 전 조회 1,225
14년 전 조회 1,610
14년 전 조회 2,095
14년 전 조회 2,026
14년 전 조회 1,905
14년 전 조회 1,289
14년 전 조회 1,495
14년 전 조회 1,329
14년 전 조회 1,205
14년 전 조회 2,416
14년 전 조회 1,661
14년 전 조회 1,621
14년 전 조회 1,749
14년 전 조회 1,883
14년 전 조회 1,263
14년 전 조회 2,049
14년 전 조회 4,403
14년 전 조회 2,260
14년 전 조회 2,356
14년 전 조회 1,761
14년 전 조회 2,235
14년 전 조회 1,886
14년 전 조회 1,684
14년 전 조회 1,373
14년 전 조회 1,352
14년 전 조회 1,552
14년 전 조회 1,803
14년 전 조회 6,332
14년 전 조회 1,858
14년 전 조회 1,568
14년 전 조회 1,606
14년 전 조회 1,182
14년 전 조회 1,374
14년 전 조회 1,989
14년 전 조회 1,487
14년 전 조회 1,142
14년 전 조회 1,663
14년 전 조회 1,744
14년 전 조회 2,045
14년 전 조회 1,372
14년 전 조회 4,929
14년 전 조회 1,535
14년 전 조회 1,485
14년 전 조회 1,537
14년 전 조회 1,714
14년 전 조회 1,540
14년 전 조회 1,273
14년 전 조회 1,345
14년 전 조회 1,768
14년 전 조회 1,076
14년 전 조회 1,662
14년 전 조회 1,664
14년 전 조회 1,727
14년 전 조회 4,480
14년 전 조회 1,710
14년 전 조회 1,414
14년 전 조회 1,900
14년 전 조회 2,009
14년 전 조회 1,212
14년 전 조회 2,463
14년 전 조회 2,447
14년 전 조회 2,020
14년 전 조회 1,957
14년 전 조회 1,494
14년 전 조회 1,980
14년 전 조회 1,899