View Single Post
  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Harlan Grove[_2_] Harlan Grove[_2_] is offline
external usenet poster
 
Posts: 1,231
Default Stripping text from numbers in a cell

"Ron Rosenfeld" wrote...
....
I can't seem to access his web site this morning -- receiving a

"Forbidden
"You don't have permission to access /forums/viewforum.php on this server.
"Apache/ProXad [May 15 2007 17:32:33] Server at xcell05.free.fr Port 80"


Same for me. Hopefully just a glitch that'll be fixed in a few hours.

Do you know if he has updated morefunc to work with Excel 07?

....

No idea.

On another note, does D+ work faster than D in regex implementations?


You mean \D+ faster than \D? Yes, generally. If there were no sequences of
multiple non-decimal digit characters in the string, the former might be
slightly slower due to overhead for the + closure, but if there were any
multiple character sequences, + closure would process them more quickly than
repeatedly processing each character. At least that's how it works in
scripting languages.