Guest User

Untitled

a guest
Jun 19th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. "a[^s]*z"
  2.  
  3. *
  4.  
  5. new Regex( @"b[^ ]*a[^ ]*z[^ ]*b" );
  6.  
  7. Regex reWord = new Regex("\b[A-Za-z]*?(a.*z)[A-Za-z]*\b");
  8.  
  9. Regex reWord = new Regex("\b\w*?(a\w*?z)\w*\b");
Add Comment
Please, Sign In to add comment