我希望匹配/*test*/import/*test*/a;中的/*test*/,请问我应如何编写我的正则表达式?
/*test*/import/*test*/a;
/*test*/
若使用/\\*(.*)\\*/,它将会匹配到/*test*/import/*test*/
/\\*(.*)\\*/
/*test*/import/*test*/