Assume that there is a text which like below:
string str = @"stackoverflow(stack:stackoverflow)overstackflow(over:stackoverflow)";
I want to get bold fields.
I think I have to find “(” and “:” in text and get the text between of them. Isn’t it?
Any advice?
Perhaps with plain
stringmethods:Demo