c# to get all string inside parentheses code example
Example: c# get string in parentheses
string input = "User name (sales)";
string output = input.Split('(', ')')[1];
string input = "User name (sales)";
string output = input.Split('(', ')')[1];