X, y, z are all numbers. Beside knowing how to check if the string is 14 chars long, I don't want to iterate each character and check if the char matches [0-9].
Are there smarter ways? No regex pls.... I'm scared of it.
|
X, y, z are all numbers. Beside knowing how to check if the string is 14 chars long, I don't want to iterate each character and check if the char matches [0-9]. Are there smarter ways? No regex pls.... I'm scared of it. |
|||||||||||||
|
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
You can use Example:
will output:
This will not guarantee the validity of the input string though. A string like +1-1-1 would result in array having all three values with 1. So you still have to validate the three array values separately. See the list of supported formats (not sure PHP supports all of these though). But seriously, |
|||||||
|
|
You don't need to be scared of regexen. A regex is just a collection of:
So for example, the symbol Armed with this knowledge, let's try to define your problem in phrases: Part 1: Match a plus, followed by 3 digits Translated to regex, this is: Part 2: Match a hyphen, followed by 4 digits Translated to regex, this is: Part 3: Match another hyphen, followed by 4 more digits Translated to regex, this is: Altogether Putting it all together, you have:
|
||||
|
There's no way around looking at each character. Even regular expressions will have to do it (behind the scenes). Also regular expressions are nothing to be scared of. In fact, it's actually rather easy, especially in cases like this:
As for the actual regular Expression:
It's looking a bit more complicated and it's possibly a tad bit faster doing classic comparison:
I'm not sure whether you refer to calling |
|||
|
|
|
Regular expression is the answer.
|
||||