Thread
:
extracting numerics from literal strings
View Single Post
#
11
Posted to microsoft.public.excel.programming
Harlan Grove
external usenet poster
Posts: 66
extracting numerics from literal strings
"Harlan Grove" wrote...
....
and to pull the last numeral substring,
=RegExpSubstitute(A3,"^.*(\d+)\D*$","$1")
....
Mucked that up. Make that
=RegExpSubstitute(A3,"^.*?(\d+)\D*$","$1")
Reply With Quote
Harlan Grove
View Public Profile
Find all posts by Harlan Grove