|
||||||
FOR %B IN (*.*) echo "%B" Is there any way to edit the %B variable? I know the basic ones like "%~nB" which will take just the name, or "%~pB" |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 | ||
|
Guest
Posts: n/a
|
FOR %B IN (*.*) echo "%B"
Is there any way to edit the %B variable? I know the basic ones like "%~nB" which will take just the name, or "%~pB" which will give the path only, but say I want to remove the first character? I know with Environment Variables I can do like the following to remove just the first character, is there something like this for the "%B" variable?: set MYVAR=Hello.txt echo %MYVAR:~1% I'm using "cmd.exe" in Windows XP SP3. Thanks |
||
|
|
|
#2 | ||
|
Guest
Posts: n/a
|
"NvrBst" <nvrbst@gmail.com> wrote in message news:8924f257-1594-4f61-9686-06e1e5cab76b@s1g2000prg.googlegroups.com... > FOR %B IN (*.*) echo "%B" > > Is there any way to edit the %B variable? I know the basic ones like > "%~nB" which will take just the name, or "%~pB" which will give the > path only, but say I want to remove the first character? > > I know with Environment Variables I can do like the following to > remove just the first character, is there something like this for the > "%B" variable?: > set MYVAR=Hello.txt > echo %MYVAR:~1% > > > I'm using "cmd.exe" in Windows XP SP3. Thanks You have to assign its current value to an env. variable before removing the first character: set MyVar=%b echo %MyVar:~1% |
||
|
![]() |
| Tags |
| cmdexe, edit, variable |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Use a variable to call a variable preiously set. | Richhall | Windows XP | 8 | 09-19-2008 09:34 AM |
| variable system | luc bonenfant | Windows 2003 Server | 7 | 06-05-2008 01:26 PM |
| whats in a variable | Hassan | Windows 2003 Server | 1 | 12-18-2007 01:07 AM |
| Adding commands to "Folder Options/Edit File Type/Actions" grayed-out "Edit" & "Remove" | Green_XP | Windows XP | 1 | 11-06-2007 02:48 AM |
| changes to path variable | bbxrider | Windows XP | 4 | 09-18-2007 10:36 PM |