Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7639445
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T08:25:12+00:00 2026-05-31T08:25:12+00:00

I am kinda beginner in perl and I need know how can I check

  • 0

I am kinda beginner in perl and I need know how can I check object class name.

My code is:

 foreach my $y (keys %$x) {
   print "$y\t$x->{$y}\n";
 }

with output:

154176568       [object HTMLImageElement]
146292140       [object HTMLDocument]
153907016       [object HTMLImageElement]

I need to print just keys that are HTMLImageElement objects.

Now, question is:

(1) How can I check the class name

(2) How can I get/print class name

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T08:25:14+00:00Added an answer on May 31, 2026 at 8:25 am

    Looking at the source for JE, it looks like JE::Object::Proxy is a subclass of JE::Object, and JE::Object has a stringification method (use overload fallback => 1, ... '""' => 'to_string' ...).

    So when you do print "$y\t$x->{$y}\n";, this is printing the result of stringifying $x->{$y}.

    You can stringify the object by putting it in double quotes, so "$x->{$y}". This expression will then have values such as you saw being printed, e.g. '[object HTMLImageElement]'.

    If you want to pick up only HTMLImageElement objects, then you could check for these using an expression like

    "$x->{$y}" eq '[object HTMLImageElement]'
    

    If you especially want to extract the string 'HTMLImageElement' from the stringified value, you could do that using a regexp, e.g.

    ("$x->{$y}" =~ m{^\[object (.*)\]$}so)[0]
    

    THOUGH, looking at the source for JE::Object::Proxy, JE::Object::Proxy has a method class which might perhaps return the name of the class that the object is a proxy for. So you might be able to get the class name using $x->{$y}->class, and then be able to test that directly as in $x->{$y}->class eq 'HTMLImageElement'.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i kinda know how to create a Custom Web Part. But now i need
I am a beginner in android.I can able to change the font type of
I'm quite the beginner regarding the whole drawing stuff in windows and I'm kinda
I'm a beginner on C# (I know Java well though) and came to a
I know this sounds kind of stupid, but as a beginner in Django (and
That's the code i have to drag my window. It kinda works! Kind of...
I'm a beginner w/ Javascript. I'm looking at the following code that someone else
I'm not a beginner at C# but I really need to increase my understanding,
Can we access any physical memory via some kernel code.? Because, i wrote a
This is kind of a beginner's question but the code I am looking at

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.