Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 511205
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T07:11:34+00:00 2026-05-13T07:11:34+00:00

I just asked a question about how to check if the current line is

  • 0

I just asked a question about how to check if the current line is blank or not in Perl.

That works for the current line, but how do I check to see if the next line is blank?

Text file to parse:(i need parse the text file and create a new XML file)

constant fixup GemEstabCommDelay = <U2 20>
    vid = 6
    name = "ESTABLISHCOMMUNICATIONSTIMEOUT"
    units = "s"
    min = <U2 0>
    max = <U2 1800>
    default = <U2 20>


constant fixup private GemConstantFileName = <A "C:\\TMP\\CONST.LOG">
    vid = 4
    name = ""  units = ""


constant fixup private GemAlarmFileName = <A "C:\\TMP\\ALARM.LOG">
    vid = 0
    name = ""
    units = ""  

I want the out put below.

<EquipmentConstants>
<ECID logicalName="GemEstabCommDelay " valueType="U2" value="20" vid="6" name="ESTABLISHCOMMUNICATIONSTIMEOUT" units="s" min="0" max="1800" default="20"></ECID>
<ECID logicalName="GemConstantFileName" valueType="A" value="C:\\TMP\\CONST.LOG" vid="4" name="" units=""></ECID>
<ECID logicalName="GemAlarmFileName" valueType="A" value="C:\\TMP\\ALARM.LOG" vid="0" name="" units=""></ECID>
</EquipmentConstants>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T07:11:34+00:00Added an answer on May 13, 2026 at 7:11 am

    Let perl do it for you. Put the handle in paragraph mode:

    $/ = "";  # paragraph mode
    while (<>) {
        ...
    }
    

    Now in every iteration of the loop, $_ will contain an entire record, where each record is separated by two or more newlines.

    See it in action:

    #! /usr/bin/perl
    
    use warnings;
    use strict;
    
    use 5.10.0;  # for named capture buffers and %+
    
    my $equipconst = qr/
      ^
      constant \s+ fixup \s+ (?:private \s+)?
      (?<logicalName>.+?)  # non-greedy to right-trim whitespace
      \s+ = \s+
      < (?<valueType>\S+) \s+ (?<value>\S+) >
    /x;
    
    my $equipattr = qr/
        \s*
        (?<name>\S+)
        \s* = \s*
        (?<value>.+?)  # must be non-greedy!
    /x;
    
    # read from DATA rather than standard input/named arguments
    # (used for demo purposes only)
    *ARGV = *DATA;
    
    print "<EquipmentConstants>\n";
    
    $/ = "";
    while (<>) {
      if (/$equipconst/g) {
        my @attrs = map [ $_ => $+{$_} ] =>
                    qw/ logicalName valueType value /;
    
        # \G picks up where the last //g stopped
        while (/\G $equipattr (?=\s*$|$equipattr)/gx) {
          my($name,$value) = @+{ qw/ name value / };
    
          # discard tag, e.g., <U2 1800> becomes 1800
          $value =~ s/<.+ (.+)>/$1/;
          push @attrs => [ $name => $value ];
        }
    
        my $attrs = join " ",
                    map {
                      # strip quotes if present
                      $_->[1] =~ s/^"(.*)"$/$1/;
                      qq{$_->[0]="$_->[1]"};
                    }
                    @attrs;
    
        print "<ECID $attrs></ECID>\n";
      }
    }
    
    print "</EquipmentConstants>\n";
    
    __DATA__
    constant fixup GemEstabCommDelay = <U2 20>
        vid = 6
        name = "ESTABLISHCOMMUNICATIONSTIMEOUT"
        units = "s"
        min = <U2 0>
        max = <U2 1800>
        default = <U2 20>
    
    
    constant fixup private GemConstantFileName = <A "C:\\TMP\\CONST.LOG">
        vid = 4
        name = ""  units = ""
    
    
    constant fixup private GemAlarmFileName = <A "C:\\TMP\\ALARM.LOG">
        vid = 0
        name = ""
        units = ""
    

    Output:

    <EquipmentConstants>
    <ECID logicalName="GemEstabCommDelay" valueType="U2" value="20" vid="6" name="ESTABLISHCOMMUNICATIONSTIMEOUT" units="s" min="0" max="1800" default="20"></ECID>
    <ECID logicalName="GemConstantFileName" valueType="A" value="C:\\TMP\\CONST.LOG" vid="4" name="" units=""></ECID>
    <ECID logicalName="GemAlarmFileName" valueType="A" value="C:\\TMP\\ALARM.LOG" vid="0" name="" units=""></ECID>
    </EquipmentConstants>
    

    Note that it differs slightly from your spec: the first logicalName attribute does not contain whitespace.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just asked a question about Regex, and received a great answer: JavaScript Split
I asked a similar question yesterday that was specific to a technology, but now
I just asked a question about whether it was possible to write a web-page-checking
I just asked this question . Which lead me to a new question :)
A related question to one I asked earlier ... Just checking on something: Should
I was just browsing a forum and someone asked about a PHP file they
I asked this question yesterday about storing a plot within an object. I tried
Halo I'm sure this question has been asked many times in the past, but
My employer just asked me to run a timed batch process in a Java
Someone at work just asked for the reasoning behind having to wrap a wait

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.