Guest User

Untitled

a guest
Nov 20th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. /^[{{yourString}}]+$/i
  2.  
  3. Pattern p = Pattern.compile("^[lhLoe]+$");
  4. Matcher m = p.matcher("hello");
  5. boolean match = m.matches();
Add Comment
Please, Sign In to add comment