Hello
I wish to replace all the characters in a string except those which
are inside '<' & '>' characters. And there could be multiple
occurences of < & > within the string.
e.g. string = "this is an example of <how> many words could be hidden
<under> these characters"
now, from this string all the characters should be searched & replaced
by a certain logic except <how> & <under>
I am accepting the string from a textarea form field and there can be
no or multiple occurences of words within < >
Any help will be highly appreciated.