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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T01:30:00+00:00 2026-06-14T01:30:00+00:00

I want to split a string(which has numerical digits). In the below example, I

  • 0

I want to split a string(which has numerical digits). In the below example, I want to split the string at k and k1.

my @array1=("0","23","1","4","65","7");
$k=1;$k1=0;
my $j=join("",@array1);
my @ar=split(/($k|$k1)/,$j);
print join(";",@ar),"\n\n";

The output is ;0;23;1;4657

In the above output, extra semicolon “;” is printing

The expected output is 0;23;1;4657

When I try the above code for the below example, the output is correct: (0;5;123;4;6); the extra semicolon is not printing here.

my @array1=("0","5","1234","6");
$k=5;$k1=4;

I am not sure, for what reason the first example is printing extra semicolon “;”

Can some one help me in this?

  • 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-06-14T01:30:02+00:00Added an answer on June 14, 2026 at 1:30 am

    The difference is when you split around the first character, you get an empty value at the beginning. Hence the extra ; before the 0 (and after the “”). You’ll similarly find ;; when splitting on two adjacent characters

    So the absolute simplest fix would be to use grep to remove empty string:

    my @ar=split(/($k|$k1)/,$j);
    @ar = grep /./, @ar;
    

    This removes the empty strings in @ar.

    In the bigger picture, you might want to look at why you’re joining strings just to split them back apart. You’re also splitting around a number in one place that could appear in another. Like if $k=1 and @array1 = (11, 23, 1, 4);

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

Sidebar

Related Questions

I have a string which has say 3000 characters, now I want to split
I want to split a string which has content like this: a$b$c but when
I want to split a string with all non-alphabetic characters as delimiters. For example,
Using Java (1.6) I want to split an input string that has components of
I have a string which has a version number. I want to read the
I have a string which has been sent using udp. Now I want to
I have a string which has delimiter in it. I want to know the
I want to split string by setting all non-alphabet as separator. String[] word_list =
I want to split a string in Javascript using split function into 2 parts.
I want to split a string like this: abc//def//ghi into a part before and

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.