Given the following string how can I match the entire number at the end of it?
$string = "Conacu P PPL Europe/Bucharest 680979";
I have to tell that the lenght of the string is not constant.
My language of choice is PHP.
Thanks.
|
|
|
You could use a regex with
And you'll get :
And here are some informations :
So :
For more informations, you can take a look at PCRE Patterns and |
|||||||||||||
|
|
EDIT: This answer checks if the very last character in a string is a digit or not. As the question Check if a Variable has a number at the end was closed as an exact duplicate of this one, I'll post my answer for it here. For what this question's OP is requesting though, use the accepted answer. Here's my non-regex solution for checking if the last character in a string is a digit:
References: |
||||
|
|