On May 03, 2012, at 12:13, steven d wrote: > I have a small library database I am trying to merge. I want to > introduce a dump from one library file into another. I don't want to > use the Book ids, a three digit number, so I want to pull all of them > out. I want to do a serch and replace using the grep option > (checked) on my search. I want to include the commas on either side > of the search and reduce the replace to a single comma > > in my "search" box i have used ,/d/d/d, ,###, /,/d/d/d/,
You need to use backslashes rather than forward slashes; from the table on page 164 of the current PDF manual: \d any digit (0-9) so Find: ,\d\d\d, Replace: , should do what you want. :-) Regards, Patrick Woolsey == Bare Bones Software, Inc. <http://www.barebones.com> P.O. Box 1048, Bedford, MA 01730-1048 -- You received this message because you are subscribed to the "BBEdit Talk" discussion group on Google Groups. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at <http://groups.google.com/group/bbedit?hl=en> If you have a feature request or would like to report a problem, please email "[email protected]" rather than posting to the group. Follow @bbedit on Twitter: <http://www.twitter.com/bbedit>
