Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to get the type of variable passed to the subroutine.While googling I came across the under-below solution, but this is not giving satisfactory results . My problem is illustrated in the below example

    sample("test");
    sample(\%a);

    sub sample {
      my ($argv1) = @_;
      if(ref($argv1) eq "STRING") {
        print "string\n";
      }
      elsif(ref($argv1) eq "HASH") {
        print "HASH\n";
      }

    }
share|improve this question

2 Answers

up vote 7 down vote accepted

ref never produces "STRING". (Well, unless you create a STRING class and bless an object into it.) A normal string is not a reference, so ref returns a false value:

sample("test");
sample(\%a);

sub sample {
  my ($argv1) = @_;
  if(not ref($argv1)) {
    print "string\n";
  }
  elsif(ref($argv1) eq "HASH") {
    print "HASH\n";
  }
}
share|improve this answer
Well, there is $foo=bless{},'STRING';print ref($foo) ... – mob Mar 18 '12 at 21:11
@mob, yes, that's an example of blessing an object into the STRING class, as I mentioned. – cjm Mar 18 '12 at 21:25
I gotta start reading the whole answer before I comment. – mob Mar 18 '12 at 21:38

So don't google, then. Read the official documentation instead.

ref returns the empty string for scalars.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.