Regex Issue - Need Only Number in this Scrape

Describe the problem: After scrapping, I am getting Points like this = (193 Points) however I just want 193.

EDIT: ([0-9][0-9][0-9]|[0-9][0-9]|[0-9]) worked.

image

Try this regex: [0-9]+

([0-9][0-9][0-9]|[0-9][0-9]|[0-9]) is not the best way to do it, you want to pick a number that appears one or more times so you use [0-9]+

Worked fine, thanks! I am new to regex so this helped me.