1
2
3
4
5
6
7
8
9
10
11
12
13
14
function getText(str,start,end){
// 构建正则表达式
var regexPattern = new RegExp(start + '(.*?)' + end);
// 使用正则表达式匹配
var match = str.match(regexPattern);
// 如果找到匹配,输出匹配的内容
if (match) {
var result = match[1]; // 捕获组的内容
console.log('Result:', result);
return result
} else {
return "没有找到数据!"
}
}