Guest User

Untitled

a guest
Feb 17th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var str = "the-first-name";
  2. console.log(str.replace(/-(\w)/g, function ($, $1) {
  3. return $1.toUpperCase();
  4. })); // theFirstName
  5.  
  6.  
  7. str = "100000000000";
  8. console.log(str.replace(/(?=(000)+$)/g, ".")) // 100.000.000.000
Add Comment
Please, Sign In to add comment