I'm looking for a way to do this in Perl:
$a = "60"; $b = "< 80";
if ( $a $b ) { then .... }
Here, $b "holds" an operator... can I do this? Maybe some other way?
|
I'm looking for a way to do this in Perl:
Here, |
||||
|
|
see perldoc eval for more |
|||
|
|
|
It's nice to see how people discover functional programming. :-) Luckily, Perl has capabilities to create and store functions on-the-fly. For example, the sample in your question will look like this:
In this example, a reference to the anonymous subroutine is stored in But, of course, if you want just to construct Perl expressions from arbitrary strings, you might want to use
However, doing this via |
||||
|
|
|
How about defining a function that wraps the needed condition:
|
|||
|
|
|
This should be a comment but comments are too cramped for something like this so I am making it CW. For the case which you showed where the contents of the variables that are going to be passed to string eval, the accepted solution is correct. If, however, the contents of
If the strings are entered by the user, there is nothing preventing the user from passing to your program the string So, the correct solution to your question would require writing or using an expression parser. BTW, you should not use |
|||||||||||||||
|
|
I wonder if Number::Compare is of any interest here. From the example:
|
||||
|
|