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. Link to comment https://forums.phpfreaks.com/topic/55580-parsing-gedcom-files/ 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+)@/ Link to comment https://forums.phpfreaks.com/topic/55580-parsing-gedcom-files/#findComment-274636 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 Link to comment https://forums.phpfreaks.com/topic/55580-parsing-gedcom-files/#findComment-274952 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.