I have a string like this
file-myfle_20130207_094852am.csv
how do i go about writing the regex to extract only the numbers
20130207094852
Like this (this is pretty common among Regex tutorials)
\d+
Each group will be the numbers.
\d+, fu SO... ;-)_.
find -name '*.csv' | sed s/[^[:digit:]]//