2 "name": "NSStringMask",
4 "summary": "NSStringMask enables you to apply masks or formats to NSStrings using NSRegularExpression to input your format.",
5 "description": "This tiny library was developed to help you apply masks and formats to strings.\n\nFor instance, suppose you have the string `12345678` and want to format it as a Social Security Number (which regex pattern is `d{3}-d{2}-d{3}`). With NSStringMask, all you have to do is `[NSStringMask maskString:@\"12345678\" withPattern:@\"(\\d{3})-(\\d{2})-(\\d{3})\"]` and the result will be \"123-45-678\". Simple enough?",
6 "homepage": "https://github.com/fjcaetano/NSStringMask",
12 "Flávio Caetano": "flavio@vieiracaetano.com"
15 "git": "https://github.com/fjcaetano/NSStringMask.git",
18 "social_media_url": "https://twitter.com/flavio_caetano",
22 "source_files": "NSStringMask/Classes/**/*"