참고 url : http://lawrence.ecorp.net/inet/samples/regexp-parse.php 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[..
mysql> select * from names; +------+-------+ | id | name | +------+-------+ | 1 | Lucho | | 2 | Lily | | 3 | Kiro | +------+-------+ 3 rows in set (0.00 sec) mysql> select * from prof; +-----------+------------+ | person_id | prof | +-----------+------------+ | 1 | Programmer | | 2 | QA | | 3 | Sys admin | +-----------+------------+ 3 rows in set (0.00 sec) mysql> update names inner join prof on..