Hi there team, i have this regex that captures local US and international phone numbers,
[0-9,+,(), ,-]{1,}(,[0-9]+){0,}$
however the page that I am scraping has the type of phone number after it. It has a space, open parens, either the word ‘Cell’ or ‘Home’, close parens) is it possible to add to the regex to capture that part of the line. The data scraped is like this: 1234567890 (Home) or 1234567890 (Cell)
Appreciate in advance your help!