리자

[펌] 정규식 함수

· 14년 전 · 2036
함수 코드예제 코드설명
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>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
14년 전 조회 3,032
14년 전 조회 1,132
14년 전 조회 1,373
14년 전 조회 2,235
14년 전 조회 2,646
14년 전 조회 1,710
14년 전 조회 1,842
14년 전 조회 1,159
14년 전 조회 1,485
14년 전 조회 1,483
14년 전 조회 2,226
14년 전 조회 1,534
14년 전 조회 1,200
14년 전 조회 1,284
14년 전 조회 652
14년 전 조회 1,345
14년 전 조회 1,238
14년 전 조회 1,265
14년 전 조회 1,796
14년 전 조회 2,681
14년 전 조회 1,736
14년 전 조회 1,534
14년 전 조회 1,894
14년 전 조회 1,133
14년 전 조회 1,163
14년 전 조회 1,420
14년 전 조회 1,627
14년 전 조회 1,251
14년 전 조회 1,563
14년 전 조회 2,162
14년 전 조회 1,148
14년 전 조회 1,492
14년 전 조회 1,493
14년 전 조회 1,200
14년 전 조회 1,213
14년 전 조회 1,602
14년 전 조회 2,085
14년 전 조회 2,015
14년 전 조회 1,902
14년 전 조회 1,281
14년 전 조회 1,492
14년 전 조회 1,319
14년 전 조회 1,192
14년 전 조회 2,406
14년 전 조회 1,648
14년 전 조회 1,614
14년 전 조회 1,741
14년 전 조회 1,878
14년 전 조회 1,252
14년 전 조회 2,037
14년 전 조회 4,400
14년 전 조회 2,246
14년 전 조회 2,350
14년 전 조회 1,752
14년 전 조회 2,227
14년 전 조회 1,882
14년 전 조회 1,676
14년 전 조회 1,366
14년 전 조회 1,338
14년 전 조회 1,540
14년 전 조회 1,795
14년 전 조회 6,323
14년 전 조회 1,853
14년 전 조회 1,561
14년 전 조회 1,598
14년 전 조회 1,173
14년 전 조회 1,366
14년 전 조회 1,981
14년 전 조회 1,481
14년 전 조회 1,129
14년 전 조회 1,656
14년 전 조회 1,733
14년 전 조회 2,039
14년 전 조회 1,358
14년 전 조회 4,921
14년 전 조회 1,528
14년 전 조회 1,474
14년 전 조회 1,528
14년 전 조회 1,711
14년 전 조회 1,531
14년 전 조회 1,261
14년 전 조회 1,340
14년 전 조회 1,764
14년 전 조회 1,064
14년 전 조회 1,653
14년 전 조회 1,650
14년 전 조회 1,719
14년 전 조회 4,476
14년 전 조회 1,704
14년 전 조회 1,403
14년 전 조회 1,896
14년 전 조회 2,002
14년 전 조회 1,209
14년 전 조회 2,456
14년 전 조회 2,437
14년 전 조회 2,010
14년 전 조회 1,953
14년 전 조회 1,485
14년 전 조회 1,973
14년 전 조회 1,893