Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Hi all, i have attempted to convert javascript to perl with no luck, my perl knowlegde isnt very good to say the least! I'll show you the javascript code, and then the perl code.
var text = 'encoded text'; var prime = 0; var comp = 0; var text; var line = ""; for (i = 0; i < text.length; i++) { var c = text.charAt(i); var comparison =parseInt(c); if (comparison) { var n = Number(c); if ((n != 1) && (n != 0)) { if (isprime(n)) { prime += n; } if (!isprime(n)) { comp += n; } } } else if ((line.length < 25) && (comparison != 1)) { c = c.charCodeAt(0); c++; c = c.toString(); temp = c; c = String.fromCharCode(temp); line += c; } } var sum = 1 * prime * comp; line += sum; WScript.Echo(line); function isprime(n) { var primer = true; var ValidChars = "2357"; var str = n.toString(); if (ValidChars.indexOf(str.charCodeAt(0)) == -1) { primer = false; } return primer; }
now perl
sub isprime($) { my $num = $_[1]; $primer = 1; $ValidChars = "2357"; $str = $num; if (index($ValidChars, ord(substr $str, 0, 1)) == 1) { $primer = 0; } return $primer; } my ($text, $prime, $comp, $line); $text = "the encoded text"; for ($i = 0; $i < $text.length; $i++) { $c = substr($text, $i, 1); ($comparison) = $c =~ s/[^0-9]//g; if ($comparison) { $n = $c; if (($n != 1) && ($n != 0)) { if (isprime($n)) { $prime += $n; } if (!isprime($n)) { $comp += $n; } } $a=$line.length; } elsif (($a < 25) && ($comparison != 1)) { $c = ord(0); $c++; $temp = $c; $c = chr($temp); $line += $c; } } $sum = 1 * $prime * $comp; $line += $sum; print $line; <>;
thanks for any help.

In reply to Javascript to Perl = fail by Anonymous Monk

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 admiring the Monastery: (2)
As of 2024-04-26 03:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found