Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
6answers
1k views

How can I create a Perl variable name based on a string?

In Perl, is it possible to create a global variable based on a string? E.g., if I had a function like: sub create_glob_var { my ($glob_var_str) = @_; # something like this ( but not a hash ...
5
votes
2answers
678 views

What's the recommended usage of a Git symbolic reference?

The following shell code correctly creates a chain of symbolic references git symbolic-ref "first" "refs/heads/master" git symbolic-ref "second" "first" git symbolic-ref "nested/third" "second" git ...
4
votes
3answers
383 views

Why does Perl evaluate code in ${…} during string interpolation?

Why does the following snippet work at all? And what evil might be possible using this? But seriously, is there any reason, the code in ${} gets evaluated at all and then used as scalar reference? ...
2
votes
2answers
570 views

How can I use a variable as a variable name in Perl?

I need to achieve the following in perl printmsg(@val1, $msg1) if @val1; printmsg(@val2, $msg2) if @val2; printmsg(@val3, $msg3) if @val3; printmsg(@val4, $msg4) if @val4; printmsg(@val5, $msg5) if ...
1
vote
3answers
89 views

In Perl, can refer to an array using its name?

I'm new to Perl and I understand you can call functions by name, like this: &$functionName();. However, I'd like to use an array by name. Is this possible? Long code: sub print_species_names ...
1
vote
2answers
97 views

Symbolic declaration of variables in Matlab

I would like to write my variables as operations between other variables. For instance if I put a = c + b then value that a keeps inside is the numeric result of the operation of a sum between c and ...
1
vote
3answers
195 views

Is it possible to symbolically reference a Perl CORE module?

I know I could easily do something like sub sin { sin($_[0]); } and symbolically reference that for every function I need to symb ref, but I'd just like to know if there's a way to do something ...
1
vote
3answers
183 views

How can I use the value of a variable as a variable name in Perl?

If I have a variable, $bar, which is equal to string "foo" and $foo is equal to 0xdead, how can I get $foo's value while I only have the the string for the variable name? Essentially, I want to do a ...
1
vote
2answers
249 views

How can I use a variable's value as a Perl variable name?

Sorry about all these silly questions, I've been thrust into Perl programming and I'm finding it really hard to think like a Perl programmer. Silly question for today: I load a pipe delimited file ...
0
votes
1answer
50 views

Symlink source + Netbeans

I prefer not to use Netbeans when I write Java code for a project, but Netbeans is perfect for refactoring, and works nicely with svn. The project is open-source on sourceforge, so I do not want to ...