Created
March 25, 2014 21:54
-
-
Save mdippery/9772228 to your computer and use it in GitHub Desktop.
This file contains 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
#import <Foundation/Foundation.h> | |
@interface NSString (Shift) | |
- (NSString *)shiftRight:(NSUInteger)places; | |
@end | |
@implementation NSString (Shift) | |
- (NSString *)shiftRight:(NSUInteger)places | |
{ | |
NSAssert(places > 0, @"places must be greater than 0"); | |
NSAssert(places < [self length], @"places must be less than the length of the string"); | |
places = [self length] - places; | |
NSString *start = [self substringFromIndex:places]; | |
NSString *end = [self substringToIndex:places]; | |
return [start stringByAppendingString:end]; | |
} | |
@end | |
int main (int argc, char const *argv[]) | |
{ | |
@autoreleasepool { | |
NSString *s1 = @"Soccer"; | |
NSString *s2 = [s1 shiftRight:2]; | |
NSLog(@"%@", s2); | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment