i have a string similar to this one:
Hi, <<\name>> <<\surname>>, this is an example <<\test>>.
I what a regex that match and split this string in:
"Hi, "
<<\name>>
" "
<<\surname>>
", this is an example "
<<\test>>
"."
I tried this one: (<<\*.*?>>)|(>>*.*?<<), but doesn't work. It's possible?
Thanks.