Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要做一些拆分,如下所示:
$(element).split(/*(.+)?/)[1]);
但是那些/*字符,让我的代码成为注释。我该如何使用它并避免这种情况发生?
/*
转义*字符以从字面上匹配它。这意味着正则表达式中的某些内容。这意味着前一个令牌匹配了 0 次或多次。
*
/\*
正则表达式应该是:
/\*(.+)?/
您可以在开头添加一个没有区别的表达式:
/.{0,}*(.+)?/