Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
use strict; use warnings; my @options_lines = (); my %files = (); my $key = ""; open (OPTIONSFILE, "<", ".\\include\\options.h"); while (<OPTIONSFILE>){ push ( @options_lines,"$_"); } close (OPTIONSFILE); assign_column_names_to_file( \@options_lines, \%{ $files{'options'}{'c +olumns'} } ); foreach $key (sort keys $files{'options'}{'columns'}{'config'}->%* ){ print "columns: $key\n"; } print "\nExiting\n"; exit 0; ############################################################# sub assign_column_names_to_file{ # \@options_lines, $file{'options'}-> +{columns} (hash reference) ##rewrite based on difopt my ($options_lines, $columnhash) = @_; #array ref, hash ref # this function populates a reference to a hash which has all the +column names, numbers, and states my $regex__cfg_names = qr"^(\/\*\+\*\/\s+\/\*\|)(.*)\*\/\r?$"; my $horizontal_offset = 116; #magic number, could calculate dynami +cally #my $horizontal_offset = 0; my @letters = (); my @config_names = (); my @columns = (); my $i = 0; my $j = 0; my $line; foreach $line (@$options_lines) { # read config names at top of file into $config_name if ($line =~ m/${regex__cfg_names}/) { #$horizontal_offset = length($1); #print (length($1 . "\n") - 1); undef @letters; @letters = split (/ ?/, $2); # for ($i = 0; $i <= $#letters; $i++) { for ($i = 0; $i < @letters; $i++) { if( $letters[$i] ne " " ){ $config_names[$i] .= $letters[$i]; } #print STDERR "\nConfig Name:".$config_names [$i]; } } } for( $i = 0; $i < @config_names ; $i++){ if( $config_names[$i] =~ m/.*ooo.*/ ){ next; } else { $$columnhash{'config'}{"$config_names[$i]"}{'column number +'} = $horizontal_offset + $i * 2; $$columnhash{'column number'}{$horizontal_offset + $i * 2} +{'config'} = "$config_names[$i]"; for( $j = 0; $j < @$options_lines; $j++){ if ( (length $$options_lines[$j] > $horizontal_offset ++ $i * 2 ) && (substr($$options_lines[$j], $horizontal_offset + $i * +2, 1) ne " ") ){ $$columnhash{'column number'}{$horizontal_offs +et + $i * 2}{'states'}{$j} = substr($$options_lines[$j], $horizontal_ +offset + $i * 2, 1); $$columnhash{'config'}{"$config_names[$i]"}{'r +owstates'}{$j} = substr($$options_lines[$j], $horizontal_offset + $i +* 2, 1); } } } } foreach $key ( keys $$columnhash{'column number'}->%* ){ #foreach $key (sort keys %{ $$columnhash{'config'} } ){ print "$key\n"; } return 0; }

This is literally the entire code. Not sure what more you were expecting. I have left in accessing inside and outside the sub to demonstrate the inconsistent syntax. Particularly inside the function, the new syntax is not helpful, and is more than confusing because I have to pay attention to the front and back of hashes.

Additionally, in upper function, I must use \%{} if I want to pass the hash reference - and it must be bracketed because of precedence compared to the first $.


In reply to Re^8: 5.26 sigil reference syntax in subfunction by chenhonkhonk
in thread 5.26 sigil reference syntax in subfunction by chenhonkhonk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (8)
As of 2024-04-16 19:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found