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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T12:37:12+00:00 2026-05-30T12:37:12+00:00

Very simple, I guess… I need to get a usable variable by adding leading

  • 0

Very simple, I guess… I need to get a usable variable by adding leading zeros to the loop index variable (%%i) below.

@echo off
for /L %%i in (1, 1, 5) do (
     echo %%i

     rem     How to create a variable j here as a 
     rem     result of adding leading zeros to %%i? (001, 002, 003 etc.)

)
pause

How?
I’ve tried the following, but I can’t get the value out of the %%i variable inte the var_ at a…

@echo off & setlocal enableextensions
for /L %%i in (1, 1, 5) do (
     echo %%i
     set var_=00000%%i
     set var_=%var_:~-5%
     echo %var_%
)
pause
  • 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-30T12:37:13+00:00Added an answer on May 30, 2026 at 12:37 pm

    Prefix the string with zeros and then take the desired count of characters from the right side:

    @echo off
    set count=5
    setlocal EnableDelayedExpansion
    
    for /L %%i in (1, 1, %count%) do (
         set "formattedValue=000000%%i"
         echo !formattedValue:~-3!
    )
    

    Outputs:

    001
    002
    003
    004
    005
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Very simple I guess but I cannot get what I perceive to be the
I guess there will be a very simple answer to this. But here goes.
Hey, I am so close to fininshing my guess a number game, very simple
I'm developing a project for windows phone 7. It's very simple I guess but
got a (I guess...) very simple problem: I want to set a session within
Well, very simple question. So that's good news for you, I guess. More thorough
I'm trying to write a very simple number guessing game (code is below). After
I guess my question is very simple, but I am new to php so
I have a very simple question (I guess!) I used to work with Scriptaculous
I guess my question is very simple, but anyway... I've created neural network using

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.