typescript 打字稿中的字符类

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 打字稿中的字符类相关的知识,希望对你有一定的参考价值。

class character {
    public symbol: string;
    public match: RegExp;
    public search: Function;
    constructor(symbol: string) {
        this.symbol = symbol;
        this.match = new RegExp(symbol, "g")
        this.search = (text:string) => {return text.search(this.match)}
    }
}

以上是关于typescript 打字稿中的字符类的主要内容,如果未能解决你的问题,请参考以下文章

打字稿中的可选属性类

打字稿中的剂量[索引:字符串]是啥意思[重复]

typescript 打字稿中的镜头

typescript 打字稿中的导出示例

typescript 打字稿中的角度转换日期格式

typescript kotlin在打字稿中的风格代表