Skip to content

Instantly share code, notes, and snippets.

View NSMutableString's full-sized avatar
🏡
Working from home

Bram Huenaerts NSMutableString

🏡
Working from home
View GitHub Profile
#import <Foundation/Foundation.h>
@interface NSString (Mod97Check)
- (BOOL)passesMod97Check; // Returns result of mod 97 checking algorithm. Might be used to check IBAN.
// Expects string to contain digits and/or upper-/lowercase letters; space and all the rest symbols are not acceptable.
@end