A family of Microsoft word processing software products for creating web, email, and print documents.
Thanks for the interest all!
Some background. I have 500 pages of text or so containing xpaths (i.e., documents/vss/blah/excellent.doc). My goal is to turn all these xpaths around so I can start sorting the various files alphabetically by file type (which will display "blocks" of the various file types...i.e., .doc, .xls, .pdf, and so on). Hope that helps and thanks for your interest!
Try a wildcard Find/Replace, where:
Find = ([!^13.]{1,}.)([!^13]{1,})(^13)
Replace = \2^t\1\2\3
This should give you each file's extension, followed by a tab, then the full path and filename (including the extension).
You can then sort the result without needing to turn it into a table (though you could easily turn the result into a two-column table if you prefer).