Search found 4 matches

by m.y.cowan
02 Aug 2013 21:36
Forum: DOS Batch Forum
Topic: SemiColons, String Literals, Delimiters and Function Calls
Replies: 6
Views: 4149

Re: SemiColons, String Literals, Delimiters and Function Cal

Thanks jeb,

I hope I can give this a try this weekend.

Cheers.
by m.y.cowan
01 Aug 2013 06:58
Forum: DOS Batch Forum
Topic: SemiColons, String Literals, Delimiters and Function Calls
Replies: 6
Views: 4149

Re: SemiColons, String Literals, Delimiters and Function Cal

Umm okay. This is a stripped down sample of some code I'm trying to build. It'll parse through a page of html and delete substrings i.e. jQuerry tags of varying lengths. (Yes I know there are plenty of IDEs out there that can do this, but I'm working in a very secure environment - annoyingly so) My ...
by m.y.cowan
31 Jul 2013 04:39
Forum: DOS Batch Forum
Topic: SemiColons, String Literals, Delimiters and Function Calls
Replies: 6
Views: 4149

Re: SemiColons, String Literals, Delimiters and Function Cal

foxidrive, Thanks for the reply. But, if you notice I pass the first parameter in with double " " inside a lope call :stringFunction "!line!" %param2% %param3% double " " seem to work fine in with a normal function call, but I get this breakdown inside a loop and when I...
by m.y.cowan
30 Jul 2013 06:45
Forum: DOS Batch Forum
Topic: SemiColons, String Literals, Delimiters and Function Calls
Replies: 6
Views: 4149

SemiColons, String Literals, Delimiters and Function Calls

Hi, I'm new to writing batch files, but I come across an interesting problem when passing lines of HTML code to a function. Basically I noticed that my lines of html string literals were being happily processed by my functions, until a semicolon (;) in between two double quotation marks. At that poi...