I have the following string
http://example.com/variable/controller/id32434242423423234?param1=321¶m2=4324342
How in best way to extract id value, in this case - 32434242423423234
Regardz, Mladjo
|
I have the following string http://example.com/variable/controller/id32434242423423234?param1=321¶m2=4324342 How in best way to extract id value, in this case - 32434242423423234 Regardz, Mladjo |
|||
|
|
|
You could just use a regular expression, e.g.:
If you need the value as an number rather than a string, you can use |
|||||||||
|
Using |
|||||||
|
|
|||
|
|
|
While Regex is THE way to go, for simple things I have written a string parser. In a way, is the (uncomplete) reverse operation of a string formatting operation with PEP 3101. This is very convenient because it means that you do not have to learn another way of specifying the strings. For example:
The parser does the opposite:
For your case, if you want an int as output
If you want a string:
If you want to capture more things in a dict:
or in a tuple: If you want to capture more things in a dict:
Give it a try, it is hosted here |
|||
|
|