Skip to content

Instantly share code, notes, and snippets.

@pjmartorell
Last active August 5, 2019 16:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pjmartorell/4e0705f5382f32ee81b3d349229a1e38 to your computer and use it in GitHub Desktop.
Save pjmartorell/4e0705f5382f32ee81b3d349229a1e38 to your computer and use it in GitHub Desktop.
Mask phone with asterisks except last 3 characters
phone = '+36637950242'; phone[0..-4] = '*' * phone[0..-4].length; phone
# OR
phone = '+36637950242'; phone.gsub(/.(?=.{3})/,'*')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment