I have this table
| Stars |
|---|
| 3 stars |
| Stars 20 |
| 901stars |
| 8 |
I'm using python to filter the table but I'm not sure of the regex to reject 8. [^0-9] will flag 3 stars, 901stars as errors too but I just want to flag that 8 is incorrect based on the regex.
The regex I need would only flag out the numbers (not number+string or string+number).