Created
October 15, 2018 06:41
-
-
Save yunustek/0b92b21a131161459c43dd6c5a3a2e60 to your computer and use it in GitHub Desktop.
NSStringMask Mask Patern for Phone Number
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// NSStringMask Mask Patern for Phone Number Format String | |
// - --- --- -- -- | |
(\d{1}) (\d{3}) (\d{3}) (\d{2}) (\d{2}) | |
// NSStringMask Mask Patern for Phone Number Format String | |
// - (---) --- -- -- | |
(\d{1}) \((\d{3})\) (\d{3}) (\d{2}) (\d{2}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment