Guest User

Untitled

a guest
Jun 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. {thing:([^}]*)}
  2.  
  3. regex.Matches(stringToCheckForMatches).Cast<Match>().Select(x => x.Groups[1].Value);
  4.  
  5. 'fooBar/{thing:hi}{thing:hello}'
  6.  
  7. hi
  8. hello
Add Comment
Please, Sign In to add comment