I need to match particular number in the matrix formatted text like

$a=' 220021 000200 020222 020222';

From the above matrix i need to find diagonal 1111 or 2222.

I have written the code, but its very big. So can anyone optimize this code

my $arraycount=0; my @charArray=(); my @linear=grep length, split /\n/ +, $a; @lines=@linear; while (length join "", @linear) { $reversed=join("", map { s/(.)//s ? $1 : "" } @linear); push (@charArray, [split //, $reversed]); } my $result; my $findString='1|2'; for(my $rw=0; $rw < (@lines-3); $rw++) { my @line=split //, $lines[$rw]; foreach my $index (grep {$line[$_]=~m/$findString/} 0..$#line) { if (($line[$index].$charArray[$index+1][$rw+1].$charArray[ +$index+2][$rw+2].$charArray[$index+3][$rw+3] eq $line[$index] x 4) or + ($line[$index].$charArray[$index-1][$rw+1].$charArray[$index-2][$rw+ +2].$charArray[$index-3][$rw+3] eq $line[$index] x 4)) { print $line[$index]; } } }

In reply to match diagonal text by arivu198314

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.