This has to be answered somewhere, but I can't seem to find it. I'm trying to identify a string of numbers, specifically, a string that does not contain any symbols (i.e. _ , . # etc..). How do I write an expression that identifies strings of integers longer than 10 but excludes anything that contains a symbol?
"49154" "Reader #1" 0.585069444444445 28 "LA" "982" "000088261962" "01/29/10" "14:02:30" 1
"49159" "Reader #1" 0.585081018518519 28 "LA" "982" "000088261962" "01/29/10" "14:02:31" 1
"49160" "Reader #2" 0.585127314814815 28 "LA" "982" "000088261962" "01/29/10" "14:02:35" 1
"49163" "Reader #2" 0.585138888888889 28 "LA" "982" "000088261962" "01/29/10" "14:02:36" 1
I tried something like: grep("[0-9]{10,20}") but I'd like to identify column #8 but exclude #4