Yesideez Posted June 14, 2007 Share Posted June 14, 2007 I'm writing a script to parse genealogy GEDCM files and one part I can never seem to get my head around no matter how much I read up on them is these damn Regex things. For those that don't know, a GEDCOM file is a plain text file which follows a set pattern to store the data. What I'm needing help on is for someone to help save my bacon and help with a couple Regex things. I need to be able to extract the data between two @ symbols like @I1@, @I257@, @F6@, @F91@ and so on. Any help appreciated. Quote Link to comment Share on other sites More sharing options...
Wildbug Posted June 14, 2007 Share Posted June 14, 2007 /@(.*?)@/ // ..or more specifically, and capturing the letter and number: /@([A-Z])(\d+)@/ Quote Link to comment Share on other sites More sharing options...
Yesideez Posted June 14, 2007 Author Share Posted June 14, 2007 Many thanks, going to give that a go now Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.