Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
01-16-2007, 04:48 PM
|
#1
|
|
Member
Registered: Feb 2002
Location: USA
Distribution: Fedora, CENTOS
Posts: 198
Rep:
|
Embedded regex matching in Perl
Hello.
I need some perl REGEX help.
Lets say I have 6 strings as follows:
1. AAA
2. AAABBB
3. AAABBBCC
4. AAABBBCCDDD
5. AAABBBCCDDDE
6. AAABBBFFF
What I want to do is write a perl script that, given a set of strings (like the ones given above for example) it selects the _longest_ string that still contains all of the other preceding strings.
So in this example, the regex should return string #5 since it contains strings 1-4, and then string #6 as a standalone string (strings #1 and #2 were encapsulated by #5 and are not counted again even though they technically appear in #6).
I could do this iteratively with a while-loop (if 2 contains 1 then keep 2; if 3 contains 2 keep 3; etc..) but this is slow for lots of patterns.
I think there might be a regex expression that will do the same thing much faster.
Perhaps there is a perl module that does this.
Can any one help?!
If any of this is unclear please let me know.
Thanks.
Last edited by GATTACA; 01-16-2007 at 04:50 PM.
|
|
|
|
01-16-2007, 08:46 PM
|
#2
|
|
Senior Member
Registered: Oct 2003
Location: UK
Distribution: Kubuntu 12.10 (using awesome wm though)
Posts: 3,530
Rep:
|
Not sure what you mean. Can you provide an example input which, when matched against the RE should extract #5 in your list?
|
|
|
|
01-16-2007, 10:25 PM
|
#3
|
|
Member
Registered: Aug 2006
Location: Saint Paul, MN, USA
Distribution: {Free,Open}BSD, CentOS, Debian, Fedora, Solaris, SuSE
Posts: 713
Rep:
|
Hi.
Perl function index comes to mind. I don't see that you need to work with regular expressions because all the strings you mentioned are constants, and you appear to be looking for sub-strings in longer strings.
If I understand you, then processing the list above should result in strings 5 and 6 being "unique" in that they are not contained in other strings ... cheers, makyo
( edit 1: clarify )
Last edited by makyo; 01-16-2007 at 10:29 PM.
|
|
|
|
01-17-2007, 07:50 AM
|
#4
|
|
Member
Registered: Feb 2002
Location: USA
Distribution: Fedora, CENTOS
Posts: 198
Original Poster
Rep:
|
Thanks for the quick replies!
Quote:
|
Originally Posted by matthewg42
Not sure what you mean. Can you provide an example input which, when matched against the RE should extract #5 in your list?
|
Actually the example I gave is what the input file looks like:
Code:
1. AAA
2. AAABBB
3. AAABBBCC
4. AAABBBCCDDD
5. AAABBBCCDDDE
6. AAABBBFFF
The lengths of the strings will vary from 10 to 150 alphabetic characters.
makyo: You are correct, the script should return strings 5 and 6 as unique. I'll give the index function a try. Thanks.
|
|
|
|
01-17-2007, 08:27 AM
|
#5
|
|
Senior Member
Registered: Oct 2003
Location: UK
Distribution: Kubuntu 12.10 (using awesome wm though)
Posts: 3,530
Rep:
|
I must have a wire crossed - I don't understand your request at all.
|
|
|
|
01-17-2007, 09:16 AM
|
#6
|
|
Member
Registered: Feb 2002
Location: USA
Distribution: Fedora, CENTOS
Posts: 198
Original Poster
Rep:
|
You don't have any wires crossed. I'm just terrible at explaining myself.
Sorry about that.
I think the index() idea might work so I'm giving it a test right now.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 04:09 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|