<ctC13>00a01-2019</ctC13>
I wanna extract the string above into 3 fields (only using RegEx):
Case 1:
ctC13
00a01-2019
/ctC13
OR
Case 2:
C13
00a01-2019
C13
Have tried several ways but it didn't work out:
case 1:
\<(.*?)\>(.*?)\<(.*?)\>
case 2:
\<ct(.*?)\>(.*?)\<\\ct(.*?)\>
Could anyone help me? Thanks!