in reply to Re^2: Any improvement over the code possible??
in thread Any improvement over the code possible??

its not giving what I expected
You need to tell us what you expect it to do. Or read the doc I linked to:
looks_like_number EXPR Returns true if perl thinks EXPR is a number.

Super Search is another way to find answers and see code examples.

Replies are listed 'Best First'.
Re^4: Any improvement over the code possible??
by Rohit Jain (Sexton) on Sep 21, 2012 at 17:23 UTC

    If I write like this: -

    say looks_like_number '2'

    It should return false as I understand.. but its not printing anything

    Neither in the case I give there a number 2

      OK. got it worked by using the below code: -

      use Scalar::Util 'looks_like_number'; my $result = looks_like_number('abc');

      Do we have to import functions like this only? Else I have to do it for every function I import??

        Different modules have different requirements, which are usually in the docs:
        By default Scalar::Util does not export any subroutines.

        So, for this module, you must import explicitly. See also perldoc -f use