티스토리 뷰
참고 url : http://lawrence.ecorp.net/inet/samples/regexp-parse.php
match 된 찿은 경과를 배열 또는 RegExp 로 값을 찿을 수 있습니다.
match 된 찿은 경과를 배열 또는 RegExp 로 값을 찿을 수 있습니다.
var str = "/product/detail.html?product_no=14&cate_no=1&display_group=2"; var pre = str.match(/product_no=([0-9]+)/); alert( RegExp.$1 ); // 14을 반환 function xtractReportType1(data) { var array = data.match(/\b[\S]+\b/g); return array[5] + " " + array[0] + " paint retail price: $" + array[2] + " ea."; } function xtractReportType2(data){ data.match(/^(\S+)\s(\S+)\s(\S+)\s(\S+)\s(\S+)\s(\S+)\b/); return RegExp.$6 + " " + RegExp.$1 + " paint retails for $" + RegExp.$3 + " ea."; }
'웹개발 > Javascript' 카테고리의 다른 글
Twitter jQuery (0) | 2012.03.05 |
---|---|
천단위 콤마 찍기 (0) | 2012.02.14 |
javascript 상속 이해하기 관련 사이트 (0) | 2012.02.08 |
Javascript Literals 표기 비교 (0) | 2011.10.21 |
의존성 역전 원칙 ( Dependency Inversion Principle ) (0) | 2011.10.21 |
댓글