I'm building an isapi filter that will grab any url requests with the prefix "http://localhost/" and redirect that url request to my message page "http://localhost/default.html."

Here's the solution:

if(urlString.Find("/") != -1) { urlString.Replace(urlString, "/default.html");

link|improve this question

what's wrong with the method you listed first? – jalf Jul 19 '09 at 17:04
feedback

3 Answers

The boost string algorithm library has some effective replace features.

link|improve this answer
feedback

Maybe you may use a RegExp to do the job ! : RegexLib.com

link|improve this answer
feedback
up vote 0 down vote accepted

the answer is: if(urlString.Find("/") != -1) { urlString.Replace(urlString, "/default.html");

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.