I'm trying to write an interface to check SHA1 or SHA256 checksums of a
file.
Initially I was thinking of opening the checksum file and figuring out
based on the contents of that file, is it a SHA1 checksum or a SHA256
checksum.
I realize it would be 'easier' to pass as an argument to the scrip
Brad Cahoon wrote:
> Hi Perl Masters
Hello,
> I have a problem with a script which is suposed to open a huge text
> file and take 70 lines, create a file, then take the next 70 lines
> create a file and so on until it has parsed the whole file. My code
> just doesn't work and my brain cannot figu
Hi,
I have XSD, XML files and want to validate the XML against the XSD and then
only proceed with parsing the XML file.
I used XML::SAX::ParserFactory, XML::Validator::Schema modules but following
is the issues i faced ...
1. Failed with this reason --- elementFormDefault in must be
'unqualifie
Brad Cahoon wrote:
Hi Perl Masters
I have a problem with a script which is suposed to open a huge text
file and take 70 lines, create a file, then take the next 70 lines
create a file and so on until it has parsed the whole file. My code
just doesn't work and my brain cannot figure out while{whi
Brad Cahoon wrote:
> Hi Perl Masters
>
> I have a problem with a script which is suposed to open a huge text
> file and take 70 lines, create a file, then take the next 70 lines
> create a file and so on until it has parsed the whole file. My code
> just doesn't work and my brain cannot figure out
Hi Perl Masters
I have a problem with a script which is suposed to open a huge text
file and take 70 lines, create a file, then take the next 70 lines
create a file and so on until it has parsed the whole file. My code
just doesn't work and my brain cannot figure out while{while{}} loops
Help ple
"John W. Krahn" <[EMAIL PROTECTED]> wrote:oryann9 wrote:
> In this regexp
>
> my $regexp = qr/(\d+\x3a1108
> |\w+\x3a1108{1,} ) /;
>
> vs.
>
> my $regexp1 = qr/(\d+\x3a1108
> |\w+\x3a1108){1,} /;
>
> does the {1,} construct outside the parens () mean the entire string 1
> or more times an
oryann9 wrote:
> In this regexp
>
> my $regexp = qr/(\d+\x3a1108
> |\w+\x3a1108{1,} ) /;
>
> vs.
>
> my $regexp1 = qr/(\d+\x3a1108
> |\w+\x3a1108){1,} /;
>
> does the {1,} construct outside the parens () mean the entire string 1
> or more times and within the parens me
On 1/31/07, Tatiana Lloret Iglesias <[EMAIL PROTECTED]> wrote:
i'm trying to get this url but i get an error:
What error?
my $response = $ua->get($url);
What's $ua? If it's an LWP::UserAgent object, that should be a correct
way to use it. Of course, you'll need next to examine the respons
Hi,
i'm trying to get this url but i get an error:
http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&Sect2=HITOFF&u=%2Fnetahtml%2FPTO%2Fsearch-adv.htm&r=1&p=1&f=G&l=50&d=PTXT&S1=%22clear+dead%22&OS=%22clear+dead%22&RS=%22clear+dead%22
my $response = $ua->get($url);
how should i encode it? I
Number one will match:
\d+\x3a1108
or
\w+\x3a1108 at least once
Number two will match:
(\d+\x3a1108|\w+\x3a1108) at least once
so yes the {1,} outside means the whole thing and {1,} inside means only the
part after the or (pipe '|' sign) unless my regex skills are completely
deserting me af
In this regexp
my $regexp = qr/(\d+\x3a1108
|\w+\x3a1108{1,} ) /;
vs.
my $regexp1 = qr/(\d+\x3a1108
|\w+\x3a1108){1,} /;
does the {1,} construct outside the parens () mean the entire string 1 or
more times and within the parens mean only the la
12 matches
Mail list logo