function 正则匹配某字符(targetCell) { const strIn = targetCell.Value2; const reg = /(187|180)w*/; var result = strIn.match(reg); if (result){ return result } return "#未匹配到# " };