Having very little knowledge on Regular expression has forced me to seek expert help on making a Regex pattern for extracting the number 63600 out of the following string :
Amount - < span style="color:#333">63600</span>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If it’s the only number in that string just use
\d+.\dmatches one digit,+means that it must be 1 or more digits.Edit:
OP edited a question. Now, if it’s the only number between tags, you can handle it in that way: