Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. console.log( 'test -test- !test!'.replace(/\btest\b/g, '1234') );
  2. // 1234 -1234- !1234!
  3.  
  4. console.log( '0test5 atestb _test_ test'.replace(/\btest\b/g, '1234') );
  5. // 0test5 atestb _test_ 1234
  6.  
  7. console.log( 'test -test- !test!'.replace(/\Btest\B/g, '1234') );
  8. // test -test- !test!
  9.  
  10. console.log( '0test5 atestb _test_ test'.replace(/\Btest\B/g, '1234') );
  11. // 012345 a1234b _1234_ test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement