用js写一个表达式,找出aaa111thbb954cc3833里面以th结尾的数字
时间: 2024-10-13 18:09:07 浏览: 22
在JavaScript中,你可以使用正则表达式来匹配字符串并提取满足条件的内容。下面是一个简单的示例,展示如何编写一个正则表达式来查找以'th'结尾的数字:
```javascript
function findThEndingNumbers(str) {
var regex = /(\d+th)/g; // 匹配以'th'结尾的数字序列
var matches = str.match(regex);
if (matches) {
return matches.map(Number); // 将字符串转换为数字数组
} else {
return "No 'th' ending numbers found in the string.";
}
}
var inputString = "aaa111thbb954cc3833";
console.log(findThEndingNumbers(inputString));
```
这个函数会返回一个数组,包含所有找到的以'th'结尾的数字,如果没有这样的数字,则返回相应的提示信息。
阅读全文