1
我想使用打字稿中的RegExp,但是在Visual Studio中代碼被標記爲錯誤。typescript import {RegExp}
import { RegExp } from "RegularExpressions/Regex"; // module not found.
export class BotAnswerRegex {
createRegex(){
var regex = new RegExp('hi');
// regex.isMatch is marked as an error
var result = regex.isMatch('hi, i am peter');
}
}
更新: 修正變量聲明
仍然是錯誤'[TS]找不到模塊 '打字稿,DOTNET-CommonJS的/系統/文字/ RegularExpressions'。 ' – roll
如何安裝'typescript-dotnet-commonjs'模塊?嘗試使用'npm install typescript-dotnet-commonjs' – Diullei
LOL,我的錯。作品!!! – roll