ASP Vbscript Replace Function Examples

by top54u.com 03 Aug, 2008
Spotlight.....

In the previous article ASP Vbscript Replace function we learnt about the syntax and replace function parameters that allow you to use the function in different ways. First three parameters of vbscript replace string function provide the functionality to replace all the occurrences of specified string pattern with other string or character in classic ASP web pages. 4th parameter start specifies the starting index for the replace function that performs the replace action on the substring string starting from the specified start parameter value. If start parameter is specified in the replace function then it returns the substring starting replaced with new string pattern or character from the specified start index value. 5th parameter count specifies to perform the replace action or replacement of old string with new one only for specified times. Now let’s see with the help of examples.

 

Examples of ASP Vbscript Replace function

 

Example 1:

<%

Dim myString

myString = "Vbscript Replace String Function"

 

' vbscript replace specified with 3 required parameters such as string expression, find string and replacement string value

Response.Write(Replace(myString, "i", "I"))

%>

 

Output:

VbscrIpt Replace StrIng FunctIon

 

 

Example 2:

<%

' here optional parameter start is passed and value has been evaluated by used InStr function by finding the first indexof white space character +1.

Response.Write(Replace(myString, "i", "I", InStr(1, myString, " ")+1))

%>

Output:

Replace StrIng FunctIon

 

 

Example 3:

<%

' Optional parameters start and count are specified here where start = 1 and count = 1. Vbscript replace function will replace only first occurence of specified character.

Response.Write(Replace(myString, "i", "I", 1, 1))

%>

 

Output:

VbscrIpt Replace String Function

Add comment


(Will show your Gravatar icon)  

  Country flag

[b][/b] - [i][/i] - [u][/u]- [quote][/quote]



Live preview

8/23/2008 8:40:28 PM

OUR SPONSORS[+ advertise here]
related videos.....
recent posts.....
top54u ezines.....