i need to separate the special character【0003】from the text 一方、テオフィリ
<div class="PAR">
        【0003】一方、テオフィリン系薬剤においては、安全域が狭く使用面の制約を
 </div> 
if(dataText.match(/【[0123456789]+】/)){
            let textSplit = dataText.split(/【[0123456789]】/);
            console.log("find text ", textSplit);
          }
The output need to be an array with [ 【0003】, 一方、テオフィリ ];
The problem it is on the split
 
     
    