wps2021通过JavaScript宏使用正则匹配
使用JavaScript创建一个正则匹配函数
function 正则匹配某字符(targetCell) {
const strIn = targetCell.Value2;
const reg = /(187|180)\w*/;
var result = strIn.match(reg);
if (result){
return result
}
return "#未匹配到# "
};
function 正则匹配某字符(targetCell) {
const strIn = targetCell.Value2;
const reg = /(187|180)\w*/;
var result = strIn.match(reg);
if (result){
return result
}
return "#未匹配到# "
};