+ 2
Regex, character classes
I want to write a simple regular expression in Python that extracts a number from HTML. For example 110 The HTML sample is as follows: number is <b>123</b>
1 Answer
+ 6
the class character for digit (0-9) is r"\d"...
as you want consecutives digits, you must append 'plus' sign:
num = r"\d+"
Hot today
Please help, any idea?
2 Votes
Loop question, I've tried everything that I knew I just don't know. Please help me solve it out
1 Votes
What is wrong? Error on test.
1 Votes
Help me solve this (using loop)
1 Votes
Help me wiht python
1 Votes
how can i flip any word with c++
0 Votes