• randexp.js根据给定正则生成随机字符串


    randexp.js可以根据给定正则表达式生成随机字符串。

    randexp.js

    使用用法:

    require('randexp'); // must require if using node
    // supports grouping and piping
    /hello+ (world|to you)/.gen;
    // => hellooooooooooooooooooo world
    // classes and ranges and references
    /<([a-z]\w{0,20})>foo<\1>/.gen;
    // => <m5xhdg>foo<m5xhdg>
    // wildcard class
    /random stuff: .+/.gen;
    // => random stuff:
    点击次数   官方主页【官方主页】   下载地址【下载地址】

    网友留言/评论

    我要留言/评论

    相关开源项目