I have a string "hai-welcome".
I need to split the above string using '-' separator:
mySstring = "hai-welcome" Separate as:
firstString = "hai" secondString = "welcome.
|
|
You can accomplish this by using "componentsSeparatedByString" method of NSString.
|
|||
|
|
|
Use NSString's componentsSeparatedByCharactersInSet method |
|||
|
|
|
Try this
|
|||
|
|
|
||||
|
|
|
If you wish to work with other than
|
|||
|
|