Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to create a tool with which I could parse some text automaticaly. I am using javascript and regular expressions.

For example, I have this text:

Aa Aaa 1, Bb Bbb 2  and Cc Ccc 1
1 Institut xx Xx, Some University, Xxxx 14, US-10000 NewYork, USA; E-Mails: aa.aaa@edu.com; cc.ccc@edu.com
2 Institut zz Zzz, Some University2, Zzzz 20, US-10000 NewYork, USA; E-Mail: bb.bbb@edu.com

And I would like to parse those informations

For each author (FirstName and LastName):

  • The affiliation
  • The email address

So in my example, I would like to have:

Aa Aaa - Institut xx Xx, Some University, Xxxx 14, US-10000 NewYork, USA - aa.aaa@edu.com

Bb Bbb - Institut zz Zzz, Some University2, Zzzz 20, US-10000 NewYork, USA - bb.bbb@edu.com

Cc Ccc - Institut xx Xx, Some University, Xxxx 14, US-10000 NewYork, USA - cc.ccc@edu.com

It looks very coplicated, so if I think that I shuld separate my question in few simpler questions, let me know.

Thank you.

share|improve this question
1  
You can't do everything with regex, believe it or not, I tried once to build a nuclear bomb with javascript and regex, but it didn't work for some unknown reason. :( – gdoron Jun 29 '12 at 13:31
Provided the citation style used is consistent, this should not be a problem. In the general case, however, parsing paper citations is a non-trivial problem, not solvable by means of regular expressions, but calling for advanced natural language processing methods. – Qnan Jun 29 '12 at 13:37
2  
Actually, now that I look closer at the problem, I definitely wouldn't use a regex here. It should be easy enough to split the first line by commas and 'and', then extract the institution reference from each one and identify the corresponding email. – Qnan Jun 29 '12 at 13:43
1  
@Pointy there're no department names in the first line, as far as i understand – Qnan Jun 29 '12 at 13:48
1  
Unless the order of the authors e-mails will always be the same as the order listed at the top, I don't think you can reliably figure out which e-mail belongs to which author. – ohaal Jun 29 '12 at 16:00
show 8 more comments

1 Answer

up vote 1 down vote accepted

It is doable task.

I don't code in JavaScript, but I hope someone from SO will clone the following Perl code for you:

$_ = "\n\n" . $input;
1 while s/^(.*?\n?)\n{1,2}\s*([^\d]+)\s+(\d+)\s*?(?:\s*and|[,\n\s])(.*?)(?<=\n)(\3\s+)([^\n]*)(\n.*$|$)/$1$2 - $6\n\n$4$5$6$7/gs;
s/\n\n.*$//s;
print $_;

See and test the Perl code here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.