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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T13:53:52+00:00 2026-05-16T13:53:52+00:00

@temp = split(/\./, $_); $val = $temp[1]; $val =~ s/\D//; What is the correct

  • 0
@temp = split(/\./, $_);
$val = $temp[1];
$val =~ s/\D//;

What is the correct syntax to write a single statement instead of these three statements in Perl?

($val = split(/\./, $_)[1]) =~ s/\D//;

gives me

syntax error at test.pl line 126, near ")["

Execution of test.pl aborted due to compilation errors.

  • 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-16T13:53:52+00:00Added an answer on May 16, 2026 at 1:53 pm

    Here’s how:

    $_="ab123.ab456cd.78";
    ($val = (split(/\./))[1])=~ s/\D//g;
    print $val;
    

    (I took the liberty of using the implicit $_ in split, and adding the /g tag to the s/// because removing one non-digit from the front didn’t make much sense.)

    Now you know this, don’t do it. It’s not clear to read, it doesn’t show your intensions, and it’s horrible. Much clearer is:

    $val = (split /\./)[1];
    $val =~ s/\D//g;
    

    Code isn’t just written for the computer. It’s written for people to read in order that they can later modify it. If you don’t write nice code for the next guy (who could be you in 2 months time), the next guy will have a horrible time figuring out what you did.

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

Sidebar

Related Questions

excluded = a, an, the, at, in, on , since temp = excluded.split(,).each {|val|
datafile = open(temp.txt, r) record = datafile.readline() while record != '': d1 = datafile.strip(\n).split(,)
I'm running into a little trouble with Perl's built-in split function. I'm creating a
string = #1x#2#3#4#5#6#; String array[] = string.split(#); for(int count=0;count<=6;count++){ // String temp = array[count];
i have this: Dim split As String() = temp_string.Split(,) ''#feed all info into global
for example, can i do this: split = temp_string.Split(<beginning of record>) those of you
class temp { int id; public int getId() { return id; } temp(int id)
class Temp { private: ~Temp() {} friend class Final; }; class Final : virtual
Application[temp] = 8; should set the value 8 to the key temp . However,
string temp is equal to ZERO:\t.WORD\t1 from my debugger. (the first line of my

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.