Hi,everyone.

How can i delete a character from a string.

for example, i want to delete the character "<" from the following string:

this is<what< i want

This is possible using the replace function, but using it, will delete all the "<" in the string,and what i want is to delete only one char "<" in the string, so i think the replace function will not be usefull here,rigth?

Thanks a lot .