如何在javascript中将变量传递给split()

这个问题在这里已经有了答案:

  • 你如何在正则表达式中使用变量? 16个答案

  • 使用正则表达式对象并试试这个:

    var modifiers = "gi"
    var patt = new RegExp(term,modifiers);
    var textSplit = text.split(patt);
    

    var term = /TO/gi;
    var textSplit = text.split(term);
    
    链接地址: http://www.djcxy.com/p/76837.html

    上一篇: How to pass a variable to split () in javascript

    下一篇: Variables in regexp