Check if last characters of an NSString are numbers.
Posted
by Michael Matheus
on Stack Overflow
See other posts from Stack Overflow
or by Michael Matheus
Published on 2010-04-03T09:57:20Z
Indexed on
2010/04/03
10:03 UTC
Read the original article
Hit count: 268
Is it possible to see of a string ends with a number which length is not known?
- "String 1" -> 1
- "String 4356" -> 4356
- "String" -> nil
If so, how can I determine that number?
© Stack Overflow or respective owner