5 lines
178 B
Mathematica
5 lines
178 B
Mathematica
|
|
NSString *text = @"Hello,How,Are,You,Today";
|
||
|
|
NSArray *tokens = [text componentsSeparatedByString:@","];
|
||
|
|
NSString *result = [tokens componentsJoinedByString:@"."];
|
||
|
|
NSLog(result);
|