Thanks Greg for the good idea!
I have been trying to keep a global array to keep the element. If the element
in the character handling call, I append the section body. It is assuming that
there are no the same element in two consecutive line in the XML file.
Cheers,
Jason
Date: Thu, 1 Jul 201
On Thu, Jul 1, 2010 at 17:29, Ævar Arnfjörð Bjarmason wrote:
snip
>> * Extensive review and Modernization of all examples
>
> One thing I'd like to suggest. I think it'd improve our code examples
> a lot if we used a consistent style for them. By that I mostly mean
> not coding style (we've had t
Thanks Jenda,
But it is a bit frustrating that I can't expect when the multiple calls will
happen. For the same repetetive element, most of the time one call. But
suddenly multiple calls take place.
Cheers,
Jason
> From: je...@krynicky.cz
> To: beginners@perl.org
> Date: Thu, 1 Jul 2010 08:09
I am excited to announce the formation of the Perl 5 Documentation
Team. Our goal is to have the best, most current, and easiest to use
and understand documentation of any programming language. Why settle
for small goals?
Since the success of this team will depend on having both expert and
novic
On Jun 30, 1:12 pm, u...@stemsystems.com ("Uri Guttman") wrote:
> > "SF" == Shlomi Fish writes:
>
> >> my @vv = split('-',$variable);
> >> my @vale = split('##',$variable);
>
> SF> Why are you splitting on strings instead of on regexes? << split(/##/,
> SF> $variable); >>
>
> that IS s