I'm not positive, but I'm pretty sure that VBScript simply doesn't support non-greedy quantifiers. You'll probably be better off using something like "<IMG[^>]*>" to search for html image tags. If you've used Perl regular expressions very much, I think you'll find there's a lot you...
Here's a few more details...
I come from a UNIX (tcl/tk and perl) background. If I ever wanted to telnet to some equipment, those languages could do that. I could just open a socket and then read/write to them easily. Now, I'm needing to do that same thing from a Windows machine. I'm not...
I come from a UNIX programming background, having spent the past couple of years writing almost exclusively tcl/tk code (with a little bit of Perl when my boss wasn't looking) on a Solaris platform.<br><br>In my new job, I'm doing exclusively windows programming and am finding that the easy...
I am using a VB-like tool and I need to be able to do some basic telnet functions (connect, send and receive text, and close). There is no way to do this in the language I'm using, but it allows for the importation of procedures via DLLs. So, I'm wanting to write these in...
Not that this has anything to do with tcl/tk, but I believe what you're looking for can be found at the below site:<br>
<br>
<A HREF="http://www.epstein.net/TP_color.htm" TARGET="_new">http://www.epstein.net/TP_color.htm</A>
When you fire off the process, exec returns the PID, so try something like this:<br>
<br>
set tmpPID [exec newProcess &]<br>
<br>
then, as part of your cleanup, include:<br>
<br>
exec /bin/kill $tmpPID<br>
<br>
which should kill newProcess.<br>
<br>
Good luck!
Eugenia,<br>
<br>
It would be helpful to have more information (like the error message). My best guess from what you wrote is that you need to include the full path for g++ (ie /apps/gnu/bin/g++).<br>
<br>
If this doesn't work out any better for you, email me and we'll figure something out.<br>...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.