> On Sep 8, 2019, at 6:36 PM, Olivier wrote:
>
> Jim Gibson writes:
>
>> On Sep 8, 2019, at 3:39 PM, Mike wrote:
>>>
>>>
>>> It's probably best if you write a short script
>>> that reads a __DATA__ section of data.
>>> Then tell us what it does and what you expected
>>> it to do.
>>>
>>>
Jim Gibson writes:
> On Sep 8, 2019, at 3:39 PM, Mike wrote:
>>
>>
>> It's probably best if you write a short script
>> that reads a __DATA__ section of data.
>> Then tell us what it does and what you expected
>> it to do.
>>
>> Off hand I don't see anything wrong with your regex,
>> but I do
You are not doing anything with $t to test whether
it works. Also you are not telling us what data you
might test it with.
Mike
On 9/8/2019 6:41 PM, Jim Gibson wrote:
On Sep 8, 2019, at 3:39 PM, Mike wrote:
I expect it to return a positive value if $t contains a number anywhere within
i
On Sep 8, 2019, at 3:39 PM, Mike wrote:
>
>
> It's probably best if you write a short script
> that reads a __DATA__ section of data.
> Then tell us what it does and what you expected
> it to do.
>
> Off hand I don't see anything wrong with your regex,
> but I don't know what you expect it to d
It's probably best if you write a short script
that reads a __DATA__ section of data.
Then tell us what it does and what you expected
it to do.
Off hand I don't see anything wrong with your regex,
but I don't know what you expect it to do.
Mike
On 9/8/2019 4:34 PM, Jim Gibson wrote:
On Sep
On Sep 8, 2019, at 1:30 PM, Gautam Desai wrote:
>
> Do you guys have any pointers ?
$t =~ m{
( # capture matched number in $1
\d* # match zero or more decimal digits
[05] # followed by a '0' or '5'
)
Do you guys have any pointers ?
Thanks
Gautam S Desai
kidsforchess.org
https://www.facebook.com/kidsforchess.suwanee.9
https://www.21stcenturyleaders.org/youth-ambassador-starts-nonprofit-donates-to-21cl/
On 2019-09-07 1:25 p.m., Jorge Almeida wrote:
Sorry about the title, it's the best I can do...
#!/usr/bin/perl
use strict;
use warnings;
my $num=12;
my $target=pack('n', $num);
symlink($target, "foo") || die $!;
It dies with "No such file or directory"
No symlink is created. What I want is a sy