论坛帮助 |
社区圈子 |
日历事件 |
2024-07-21, 23:25 | #1 | ||
|
|||
正式会员
等级: 四袋长老
|
var result = getNumbers(mm); alert(result); function getNumbers(mm) { var regex = /(\d+)[^X]*X(\d+)$/; var match = mm.match(regex); if (match) { return [match[1], match[2]]; } return null; } 我是想获取这个字符串最后一个"X"前后的数字,其它字符不需要,"BOX中华人民共和国123X456LM中华人民共和国",我需要的是 123,456 . |
||
回复时引用此帖 |