[ad_1]
You can use the Regex pattern <.*?> to retrieve each word, ie
MatchCollection matches = Regex.Matches(input, "<.*?>");
You can then iterate over the collection to get the tags.
2
[ad_2]
solved Get String with Specific Tags in C#
[ad_1]
You can use the Regex pattern <.*?> to retrieve each word, ie
MatchCollection matches = Regex.Matches(input, "<.*?>");
You can then iterate over the collection to get the tags.
2
[ad_2]
solved Get String with Specific Tags in C#