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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T10:45:03+00:00 2026-05-13T10:45:03+00:00

I am learning the sample code from split function . Sample code. #!C:\Perl\bin\perl.exe use

  • 0

I am learning the sample code from split function.

Sample code.

#!C:\Perl\bin\perl.exe
use strict;
use warnings;

my $info = "Caine:Michael:Actor:14, Leafy Drive";
my @personal = split(/:/, $info);
# @personal = ("Caine", "Michael", "Actor", "14, Leafy Drive");

If change the $info = "Caine Michael Actor /* info data */";
How to use the split(/ /, $info) to export the result below.

# @personal = ("Caine", "Michael", "Actor", "info data");

Thank you.

  • 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-13T10:45:04+00:00Added an answer on May 13, 2026 at 10:45 am

    Cooked something up :). Does work only for you example. Cannot generalize

    use strict;
    use warnings;
    
    my $info = "Caine Michael Actor /* info data */";
    if($info=~m{/\*\s*(.*?)\s*\*/})
    {
        my $temp = $1;
        $temp=~s{\s+}{##}g;
        $info=~s{/\*\s*(.*?)\s*\*/}{$temp};
    }
    my @personal = split(/ /, $info);
    foreach(@personal)
    {
        s{##}{ }g;
        print "$_\n";
    }
    

    Output:

    C:>perl a.pl
    Caine
    Michael
    Actor
    info data

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

Sidebar

Related Questions

I am learning to use xmlhttprequest/AJAX. In this sample code from w3schools, I do
I'm learning about deadlocks in Java, and there's this sample code from Sun's official
I am use libxml2 for XML parsing. The sample code on the libxml website
I am learning the boost::lambda library and for that I wrote this sample code
I am still learning Perl scripting and need help in doing below task. Sample
Im new to learning JQuery. Im doing a sample from JQuery Novice to Ninja
I am trying to bind events from a GUI file to use code from
I am learning Nhibernate 3.0. In one of the sample code examples, it creates
I am still learning Sweave and R . I have below a sample code
I am learning MVVM using sample created by Josh Smith at http://msdn.microsoft.com/en-us/magazine/dd419663.aspx I wanted

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.