Stefan
3
Q:

c# get string in parentheses

Regex.Match("User name (sales)", @"\(([^)]*)\)").Groups[1].Value
1
string input = "User name (sales)";
string output = input.Split('(', ')')[1];
0
\(             # Escaped parenthesis, means "starts with a '(' character"
    (          # Parentheses in a regex mean "put (capture) the stuff 
               #     in between into the Groups array" 
       [^)]    # Any character that is not a ')' character
       *       # Zero or more occurrences of the aforementioned "non ')' char"
    )          # Close the capturing group
\)             # "Ends with a ')' character"
0

New to Communities?

Join the community