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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T08:15:40+00:00 2026-06-17T08:15:40+00:00

I am facing some problem while adding values in numeric string: I have string

  • 0

I am facing some problem while adding values in numeric string:

I have string that looks like 02:03:05:07:04:06. All the numbers have to be <10. Now, I have to take a random number from 1-9 and add that number with last position number of the string (e.g. 3).

I the sum>10, then I have add that number to the number in the second last position.

So far, I have

#!/usr/bin/perl -w
use strict;
my $str='02:03:05:07:04:06';
my @arr=split(/:/,$str);
my @new_arr=pop(@arr);
my $rand_val=int(rand(9));
my $val=$new_arr[0]+$rand_val;
if($val>=10)
{
   I am unable to generate a logic here:(

}

Please help me out of this problem.

After adding the number we have to join the string and print it also 🙂

  • 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-17T08:15:40+00:00Added an answer on June 17, 2026 at 8:15 am
    my $str = '02:03:05:07:04:06';
    my @nums = split /:/, $str;
    my $add = int(rand(9)) + 1;
    my $overflow = 1;
    for (1..@nums) {
       if ($num[-$_] + $add < 10) {
          $num[-$_] += $add;
          $overflow = 0;
          last;
       }
    }
    
    die "Overflow" if $overflow;
    
    $str = join ':', map sprintf('%02d', $_), @nums;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have 2 classes Test(Base)and Program(child). Now I am facing some problem while downcasting.
Hope you all fine.I am facing some sort of problem while passing multiple parameters
i have a script which is for virtual keyboard, i am facing some problem
Im currently facing the problem that when i try to set focus on some
I'm facing some problems with my silverlight application. My application looks like an image
I have created web-application using JSF 2.0 & JSP and facing some weird problem.
I am facing some problem while returning data from web services. I am using
I am facing a problem related to get out all the controls from some
Hi guys I am using entity framework, I am facing some problem while checking
I am facing a strange problem while running my application. I have a class

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.