Supposed I have the following strings:
string str1 = "<tag tsdfg> some other random text";
string str2 = "<tag sdfgsdfgfsdg> some other random text";
string str3 = "<tag 1564> some other random text";
i would like to change those strings to
"<tag> some other random text"






str1 = str2 = str3 = "<tag>"? :)str1 = str2 = str3 = "<tag> some other random text"for correctness! :-D