Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. var digitSurroundedBySpace = /SDS/;
  2. document.writeln("1234567AB".search(digitSurroundedBySpace));
  3.  
  4. var digitSurroundedBySpace = /DS/;
  5. document.writeln("1234567AB".search(digitSurroundedBySpace));
  6.  
  7. var digitSurroundedBySpace = /SDS/;
  8. document.writeln("1234567AB".search(digitSurroundedBySpace));
  9. // index: 012345678
  10. // match: ^
  11.  
  12. var digitSurroundedBySpace = /DS/;
  13. document.writeln("1234567AB".search(digitSurroundedBySpace));
  14. // index: 012345678
  15. // match: ^
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement