Summary: Hello. I would to rename blah1_car_test.txt blah2_car_test.txt TO blah1_test.txt blah2_test.txt also a seperate script that replaces spaces in a fi...
Summary: ALLTRIM() only removes the spaces on the ends of a string. To remove spaces in the middle, you'll need to write your own. this is a C version: int i,...
Summary: Hello, I have a lot of files which countain %20 in their names. So I would like to remove %20. I have a Batch Dos script which remove spaces in filena...
Summary: Hi all, N.B. This will only work, or has been tested in Dos 7.1 so it won't work in an NT Environment! Heres an intereting way of removing ALL(blank l...
Summary: update---- i was able to make a function to remove the vowels in a string.. however, the way i have the function set up it puts a space where a vowel...
Summary: Hi, I'm running a batch file to delete some old log files in the "Microsoft SQL Server" folder. It works fine when I test it in a short path like "C:\...
Summary: In my experience, whitespace (spaces, tabs, newlines) between TR and TD tags don't translate into spaces in the display. But, whitespace between a TD ...
Summary: Crap, I know what's wrong. There are spaces in the filenames and the first hundred txt files start with Set. Anyway to get around this? -Matt...
Summary: Let me guess... you're using 'cin>>`? Don't do that for inputting strings. Use cin.getline(char* buffer, int length, char terminal_char) , like cin.ge...
Summary: I am trying to clear all data in multiple .txt files. All of the files begin with the same prefix (Invdata). Invdata(10(1)).txt Invdata(10(2)).txt Inv...
Summary: Is there any way to replace the spaces in folder names with an underscore? For example, given these directories: C:\MainFld\Folder 1\001\ C:\MainFld\F...
Summary: Hi all I have ran in to some minor problem in my bat file. If I try to move a file into a directory that contain spaces in the name e.g Dir A the file...
Summary: I want to do this %USERNAME%=Elaine Jack --> ElaineJack (without a space in between two words) i.e. %USERNAME% is a system variable, user name may be ...
Summary: function get_name( form ) { // Creates some variables var alphanum="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" var s = form.text...
Summary: "Am I missing something? Why wouldn't move *NAME_TO_SEARCH*.* D:\online\links\tech\ work?" He said it won't work if there are spaces in the filenames....
Summary: I hope somebody can help a bit more.. I have changed the @Mechanix2Go script to process a list of files: -------------------- @echo off > not_successf...
Summary: Hi Clint, The del command is referring to another file, borger_time.csv which is not the one you've just created (it has an underscore instead of a sp...
Summary: I am currently trying to write a script to prefix 100's of files with a random number on a regualr basis. I need to keep the file name integrity and ...
Summary: Hi everyone, I have a bat script to parse a filename out a of a url like so: @echo OFF set file=%1 for /F %%i in (%file%) do call :get_filename %%i go...
Summary: Hi, I need to replace filenames having spaces and dots with underscore using a .bat script example: I need to convert filenames like Web News 04-08-20...
Summary: what command can i use to remove the first 15 chars of hundereds of files so i can get them in alphabetical order, files are named CBEP???-?-?? - file...
Summary: 1. Tested only on vista. Should work on xp. 2. if you name it cszcopy.bat you can invoke like you would invoke the copy command. "cszcopy sourfile.ext...
Summary: I am trying to pass filenames one by one to an application which will run in command line from java. filename1="example1.txt"; filename2="example2.tx...
Summary: Thanks that you showed me this line: spell21=%spell2% %spell1% It gave me a silly idea. I trailed each word with a space and removed the space from th...