follow string must be match
das is<C strike ><c1>t ein text </c1></C><C u ><c1>der </c1></C><C b u ><c1>hier </c1></C>im <C i u ><c1>editor </c1></C><u></u>steht
my regex don't work
>(.*?)<
thats match all text between tags, but i need only follow result, for my it's only the text interested was no warp from any TAG (for this sample like )
match[0] ------> das is
match[1] ------> im
match[2] ------> steht
but i become this:
match[0] ------> das is
match[1] ------> t ein text
match[2] ------> der
match[3] ------> hier
match[4] ------> im
match[5] ------> editor
match[6] ------> steht