I have text
Hi, my name is <b>Dan</b> and i need/n to separate string
What I need is to find specific tags and separate text by predefined tags like /n or (b), the result need to be:
Str[0] = Hi, my name is
Str[1] = Dan
Str[2] = and i need
Str[3] = to separate string
Can you please help me?