I'm working on a data mining script that will be used to save some pattern in an hash table. Below is the information on a sample file that I'm working on
.raf_group(first line);
.licoln_group(second line);
.start_raf_group(fitth line); //templated
wired .raf_group_firm ({help me please}); //templated
.muf_group (raf, lee you)
I will like to "pattern match" each line that start with a "." and stop the matching at the end of the closing parenthesis ")" Then I will love to split each setence and store the first part as a key and the second path as a value to a hash table. Thanks for your help in advance
.raf_group(first line);
.licoln_group(second line);
.start_raf_group(fitth line); //templated
wired .raf_group_firm ({help me please}); //templated
.muf_group (raf, lee you)
I will like to "pattern match" each line that start with a "." and stop the matching at the end of the closing parenthesis ")" Then I will love to split each setence and store the first part as a key and the second path as a value to a hash table. Thanks for your help in advance