I have a regex with a character sequence. I want the sequences parts into groups.
Pattern e_1394Pattern = Pattern
.compile("\\dR\\|\\d\\|(((([^\\|]))*\\|){11})");
String resultLine = "\4R|1|^^^02^Myo^1021406330|25.6^F|ng/mL||N||F||Administrator||20140318215839|";
This pattern works fine, but I need the groups of the following Part (((([^\\|]))*\\|){11})
.
Is this possible using a short regex?
This is no option: \\dR\\|\\d\\|((([^\\|]))*\\|) ((([^\\|]))*\\|) ((([^\\|]))*\\|) ((([^\\|]))*\\|)....