I have a set of data that looks something like this. it's currently formatted as a string.
| 23523words |
| words |
| 88 words |
| 1 |
| 2 |
| 3 |
| 4 |
| 5 |
| 8124words |
| 6 |
| 7 |
I'd like to filter out only the columns with numbers (1,2,3,4,5,6,7). I've tried converting the string to a number and then applying some filters to clear stuff out, but that was unsuccessful.
Should I be considering a different kind of tool?