I'm failing to match a nested capturing group multiple times, the result only gives me the last inner capture instead.
Input string: =F2=0B=E2some text =C2=A3
Regex: (=([0-9A-F][0-9A-F]))+
The capturing groups it returns is:
Group 1:
Group 2:
But I need Group 2 to return:
and
within each outer group.
Is this possible somehow?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…