|
-
Nov 10th, 2000, 07:30 AM
#1
Thread Starter
Fanatic Member
I'm using the replace function like this
Replace(String, "size="2">", "")
But of course that wouldn't work because there are four quotes! What do I do!
Visual Basic 6.0
Visual C++ 5
Delphi 5

-
Nov 10th, 2000, 07:46 AM
#2
transcendental analytic
replace them with pairs of quotes:
Code:
Replace(String, "size=""2"">", "")
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Nov 10th, 2000, 07:49 AM
#3
Addicted Member
Code:
Replace(String, "size=" & Chr$(34) & "2" & Chr$(34) & ">", "")
[Edited by gfk on 11-10-2000 at 08:04 AM]
Visual Basic 6 Enterprise Edition + SP4
-
Nov 10th, 2000, 07:49 AM
#4
Thread Starter
Fanatic Member
Visual Basic 6.0
Visual C++ 5
Delphi 5

Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|