473,513 Members | 2,270 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

perl regex

89 New Member
I have a data file and 4th column looks like below: Some examples

34899939-34899967
34899939-34899967:34905554-34905559
34899939-34899967:34905554-34905559:34905560-34905574


I have to extract like below:
For the first line:
$start = 34899939
$end = 34899967
$block_size = 1

For the 2nd line:
$start = 34899939
$end = 34905559
$block_size = 2
$n1=34899939
$n2=34899967
$n3=34905554
$n4=34905559

For the 3rd line:
$start = 34899939
$end = 34905574
$block_size = 3
$n1=34899939
$n2=34899967
$n3=34905554
$n4=34905559
$n5=34905560
$n6=34905574

I am able to differentiate 1 block and 2 block depending upon : character and able to find the solution for the 3rd line as below:
Expand|Select|Wrap|Line Numbers
  1. sub special {
  2.  
  3.         chomp $_;
  4.         my @v = split(/\s+/,$_);        
  5.         if($v[3] =~ /\:/) {
  6.         $num1 = $`;
  7.         $num2 = $';
  8.                 if($num1 =~ /\-/) {
  9.                         $n1 = $`;
  10.                         $n2 = $';
  11.                 }
  12.                 if($num2 =~ /\-/) {
  13.                         $n3 = $`;
  14.                         $n4 = $';
  15.                 }
  16.         }
  17.         $start = $n1;
  18.         $end = $n4;
  19.         print "$n1 \t $n2 \t $n3 \t $n4 \n";
  20.  
  21. }
  22.  
But how do I generalise the numbers with : to generate the $n(i)? Thanks.
Feb 19 '09 #1
4 2166
KevinADC
4,059 Recognized Expert Specialist
Your data is confusing. What do you mean "the 4th column looks like this"? You have posted three seperate lines of data. Are they part of a larger line of data? Why in your sub special() are you first splitting on spaces when there is no spaces in the data you posted?
Feb 19 '09 #2
lilly07
89 New Member
Hi Kevin, sorry for the confusion. Let me try to explain.

My 4th column can contain data as given in my previous post. It can contain without : or with one or two or three set of numbers separated by :

Hence they are different kinds of data available in 4th column of each data.

Every line I parse it to get the 4th column hence I split using space to get my 4th column data. And still parse with a special character : and then further split the example.

If my 4th column is like 1st example, then it is easy for me to split the numbers and put them into $n1 and $n2.

If my 4th column is like 2nd line example with one :, then my subroutine special does the job and assign $n1,$n2,$n3 and $n4.

But I want to write a generalised routine which can handle like line 3 or even with more number of:

I hope I have explained clearly.
Regards
Feb 19 '09 #3
KevinADC
4,059 Recognized Expert Specialist
That helped clear it up. I hope I am not doing your school work for you.

Expand|Select|Wrap|Line Numbers
  1. while(<DATA>) {
  2.    special($_);
  3. }
  4.  
  5. sub special {
  6.    local ($_) = @_; 
  7.    chomp $_;
  8.    my $col4 = (split(/\s+/))[3];
  9.    my @blocks = split(/:/,$col4);
  10.    my @temp;
  11.    for (@blocks) {
  12.       push @temp, split(/-/);
  13.    }
  14.    print "start = $temp[0]\n";
  15.    print "end = $temp[-1]\n";
  16.    print 'blocks = ', scalar @blocks,"\n";
  17.    for (@temp) {
  18.       print "\t$_\n";
  19.    }
  20.    print "\n";
  21. }
  22. __DATA__
  23. dummy dummy dummy 34899939-34899967 dummy
  24. dummy dummy dummy 34899939-34899967:34905554-34905559 dummy 
  25. dummy dummy dummy 34899939-34899967:34905554-34905559:34905560-34905574 dummy 
  26.  
Apply your own file I/O inplace of DATA
Feb 19 '09 #4
KevinADC
4,059 Recognized Expert Specialist
output is:

Expand|Select|Wrap|Line Numbers
  1. start = 34899939
  2. end = 34899967
  3. blocks = 1
  4.     34899939
  5.     34899967
  6.  
  7. start = 34899939
  8. end = 34905559
  9. blocks = 2
  10.     34899939
  11.     34899967
  12.     34905554
  13.     34905559
  14.  
  15. start = 34899939
  16. end = 34905574
  17. blocks = 3
  18.     34899939
  19.     34899967
  20.     34905554
  21.     34905559
  22.     34905560
  23.     34905574
  24.  
edit the output for your needs to display it how you need to. I added "start", "end" and "blocks" just to make it easier to read.
Feb 19 '09 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

7
1532
by: el_roachmeister | last post by:
Is there a good article that explains why php does not support =~ like perl for regex? I am confused by all the different ways one can do regex in php but it would seem supporting =~ would...
6
5932
by: John Smith | last post by:
Hello, I have a rather odd question. My company is an all java/oracle shop. We do everything is Java... no matter what it is... parsing of text files, messaging, gui you name it. My question...
77
3975
by: Hunn E. Balsiche | last post by:
in term of its OO features, syntax consistencies, ease of use, and their development progress. I have not use python but heard about it quite often; and ruby, is it mature enough to be use for...
17
3076
by: Michael McGarry | last post by:
Hi, I am just starting to use Python. Does Python have all the regular expression features of Perl? Is Python missing any features available in Perl? Thanks, Michael
1
3706
by: Xah Lee | last post by:
suppose you want to do find & replace of string of all files in a directory. here's the code: ©# -*- coding: utf-8 -*- ©# Python © ©import os,sys © ©mydir= '/Users/t/web'
9
3186
by: Xah Lee | last post by:
# -*- coding: utf-8 -*- # Python # Matching string patterns # # Sometimes you want to know if a string is of # particular pattern. Let's say in your website # you have converted all images...
75
4582
by: Xah Lee | last post by:
http://python.org/doc/2.4.1/lib/module-re.html http://python.org/doc/2.4.1/lib/node114.html --------- QUOTE The module defines several functions, constants, and an exception. Some of the...
3
2423
by: Pat Deegan | last post by:
Greetings, I've been having issues while debugging programs. The problems only appear when using the '-d' switch and I get the impression it has to do with UTF8 and regex matching but I don't...
1
1769
by: George Orwell | last post by:
Would I be missing much if I stopped trying to learn Perl well enough to use for spidering, screen scraping etc. and converted over to PHP ? I am looking to do all, or at least most of the hacks...
0
7171
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7388
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
7111
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7539
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5692
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
3240
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1605
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
807
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
461
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.