0
votes
1answer
13 views
Installers with shared subinstallers?
We build a bunch of products that all have a similar structure, and in fact share installed subdirectories, documentation and various system configuration variables (environment va …
0
votes
2answers
43 views
Windows Shell Script: Can’t make string substitution working in subroutine…
Greetings dear Experts!
Could you please advice me on how to cope with the problem:
@echo off
cls
setlocal enabledelayedexpansion
path=%CD%;%path%
set NumberOfPages=553
rem s …
3
votes
3answers
115 views
perl subroutine call
I have a Perl file like this:
use strict;
f1();
sub f3()
{ f2(); }
sub f1()
{}
sub f2()
{}
In short, f1 is called before it is defined. So, Perl throws a warning: "f1 called t …
6
votes
3answers
118 views
Is using labels in Perl subroutines considered a bad practice?
I find that using labels inside Perl subroutines, to break from multiple loops, or to redo some parts with updated variables, very helpful. How is this coding style seen by the com …
3
votes
4answers
99 views
How do I properly invoke a subroutine that takes 2 subroutine references?
Imagine this subroutine:
sub test(&&)
{
my $cr1 = shift;
my $cr2 = shift;
$cr1->();
$cr2->();
}
I know I can call it like: test(\&sub1,\&su …
1
vote
8answers
223 views
How can I ask the user to re-enter input when they enter invalid input, in Perl?
Hi,
I've a Perl subroutine which asks input from User. I perform a check inside that subroutine itself whether the input entered is a valid input.
If it's not, I want to call the …
0
votes
1answer
76 views
How can I link a subroutine to Autodyn?
Hi Sir/Madam,
I want to model reinforced concrete structures in Autodyn v6.1 under blast loading. So I am writting an user subroutine to model concrete with modified properties bu …
8
votes
3answers
214 views
When should I use the & to call a Perl subroutine?
I have heard that people shouldn't be using '&' to call Perl subs, i.e:
function($a,$b,...);
# opposed to
&function($a,$b,...);
I know for one the argument list becomes …
3
votes
4answers
206 views
How can I use hashes as arguments to subroutines in Perl?
I was asked to modify some existing code to add some additional functionality. I have searched on Google and cannot seem to find the answer. I have something to this effect...
%fi …
8
votes
10answers
1k views
Is there a difference between Perl’s shift versus assignment from @_ for subroutine parameters?
Let us ignore for a moment Damian Conway's best practice of no more than three positional parameters for any given subroutine.
Is there any difference between the two examples bel …
3
votes
3answers
180 views
How can I validate enum types as Perl subroutine arguments?
Building off Does Perl have an enumeration type?, how can I perform dynamic type checking (or static type checking if use strict is able to do so) that my subroutine argument is ge …
2
votes
3answers
479 views
Syntax Question: “Exit Sub” or “Return” in VB.Net Sub Routines
Both seem to accomplish the same thing--exit a subroutine. Is there any difference in how they work under the covers?
I.e.
Private Sub exitNow()
Exit Sub
End Sub
or
Private …
3
votes
7answers
436 views
Why would I use Perl anonymous subroutines instead of a named one?
I'm just curious why one would choose to use an anonymous subroutine, versus a named one, in Perl. Thanks.
2
votes
6answers
349 views
How can I export all subs in a Perl package?
I would like to expose all subs into my namespace without having to list them one at a time:
@EXPORT = qw( firstsub secondsub third sub etc );
Using fully qualified names would …
9
votes
3answers
371 views
What’s the best way to discover all subroutines a Perl module has?
What's the best way to programatically discover all of the subroutines a perl module has? This could be a module, a class (no @EXPORT), or anything in-between.
Edit: All of the m …
