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 122435
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T04:07:41+00:00 2026-05-11T04:07:41+00:00

I was glancing through some code I had written in my Perl class and

  • 0

I was glancing through some code I had written in my Perl class and I noticed this.

my ($string) = @_; my @stringarray = split(//, $string); 

I am wondering two things: The first line where the variable is in parenthesis, this is something you do when declaring more than one variable and if I removed them it would still work right?

The second question would be what does the @_ do?

  • 1 1 Answer
  • 3 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. 2026-05-11T04:07:42+00:00Added an answer on May 11, 2026 at 4:07 am

    The @_ variable is an array that contains all the parameters passed into a subroutine.

    The parentheses around the $string variable are absolutely necessary. They designate that you are assigning variables from an array. Without them, the @_ array is assigned to $string in a scalar context, which means that $string would be equal to the number of parameters passed into the subroutine. For example:

    sub foo {   my $bar = @_;   print $bar; }  foo('bar'); 

    The output here is 1–definitely not what you are expecting in this case.

    Alternatively, you could assign the $string variable without using the @_ array and using the shift function instead:

    sub foo {   my $bar = shift;   print $bar; } 

    Using one method over the other is quite a matter of taste. I asked this very question which you can check out if you are interested.

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

Sidebar

Related Questions

I've been glancing at this code for a while now, and I can't seem
I'm just trying to dive into CodeIgniter + RedBean ORM. Been glancing through some
Glancing at the source code of GNU C Library,I found the inet_ntoa is implementated
I came across this code: #include<stdio.h> void main() { int x; float t; scanf(%f,&t);
As part of the base class for some extensive unit testing, I am writing
I'm maintaining an application written in Microsoft Access with VBA. I'm glancing over my
I was just glancing through my Cpanel's php.ini EZConfig (basically php.ini; it just allows
Is the reason F# doesn't support nested classes technical, stylistic, arbitrary? Glancing over the
So I hope this is a valid question... I've recently (today actually) decided to
Basically, I found that a JSON string that is a JavaScript object (associative array)

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.