How do you check if an NSString begins with a certain character (the character *).
The * is an indicator for the type of the cell, so I need the contents of this NSString without the *, but need to know if the * exists.
|
How do you check if an NSString begins with a certain character (the character *). The * is an indicator for the type of the cell, so I need the contents of this NSString without the *, but need to know if the * exists. |
|||
|
|
|
You can use the
|
|||
|
|
|
You can use:
|
|||||||
|
|
Use |
|||
|
|
|
|||
|
|
|
hasPrefix works especially well.
for example if you were looking for a http url in a
parameter |
||||
|
|
|
This might help? :) Just search for the character at index 0 and compare it against the value you're looking for! |
|||
|
|
|
As a more general answer, try using the hasPrefix method. For example, the code below checks to see if a string begins with 10, which is the error code used to identify a certain problem.
|
|||
|
|