I've got some weblogs in a table with URLs of the form:
http://foo.com/bar/12345/baz?param=something789
I'd like to strip out the digits from the path for reporting purposes. They're not constant length and digits may appear elsewhere in the URL, so regex feels like the natural way to remove them.
How can I do this in T-SQL?