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

  • SEARCH
  • Home
  • 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 4265818
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T06:40:32+00:00 2026-05-21T06:40:32+00:00

Where is the difference between the following two Statements? print surname= ,$myVal, \n; and

  • 0

Where is the difference between the following two Statements?

print "surname=" ,$myVal, "\n";

and

print "surname=" .$myVal. "\n"

I’ve tested them and both return the same result. Is there even a difference?

Thanks

  • 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. Editorial Team
    Editorial Team
    2026-05-21T06:40:33+00:00Added an answer on May 21, 2026 at 6:40 am

    A Perl programmer would probably write that as:

    print "surname=$myVal\n";
    

    It does look like it’s doing the same thing, doesn’t it? And in your example it does do the same thing. The difference is more obvious if you replace the scalar variable with an array.

    my @var = qw(some data);
    
    print "value=", @var, "\n";
    print "value=". @var. "\n";
    

    The difference is in the number of arguments that are passed to the print function. If you use the concatenation operator (.) then your arguments are concatenated together into one string and print gets a single argument. If you use the comma, then print gets a list of arguments.

    Of course, it’s possible to mix the methods in the same print call.

    print "surname=" ,$myVal . "\n";
    

    Another nice example is to use the return value from localtime.

    print 'The time is ', localtime, "\n";
    print 'The time is '. localtime, "\n";
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a difference between the following two statements: mysql> EXPLAIN SELECT IF(arms IS
Is there any performance difference between the following two statements? from item in collection
Is there any difference between these two statements, given the following language?? Ben likes
What is the difference between the following two statements? alter table [dbo].[Demo] add constraint
Can somebody please tell, what's the difference between the following two statements: TimeZone.getTimeZone(America/New_York) and
Is there any difference between following two ways of creating an object. Student s1
Is there any difference between the following two examples and should one be preferred
Is there a difference between the following two : ArrayList list = getData(); public
What is the difference between these two following statements? String s = text; String
What is the difference (if any) between the two following preprocessor control statements. #if

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.