VBScript - functie vervangen


❮Volledige VBScript-referentie

De functie Vervangen vervangt een opgegeven deel van een tekenreeks een bepaald aantal keren door een andere tekenreeks.

Syntaxis

Replace(string,find,replacewith[,start[,count[,compare]]])

Parameter Description
string Required. The string to be searched
find Required. The part of the string that will be replaced
replacewith Required. The replacement substring
start Optional. Specifies the start position. Default is 1. All characters before the start position will be removed.
count Optional. Specifies the number of substitutions to perform.
Default value is -1, which means make all possible substitutions
compare Optional. Specifies the string comparison to use. Default is 0

Can have one of the following values:

  • 0 = vbBinaryCompare - Perform a binary comparison
  • 1 = vbTextCompare - Perform a textual comparison

Voorbeelden

voorbeeld 1

Vervang het woord "mooi" door "fantastisch":

<%

txt="This is a beautiful day!"
response.write(Replace(txt,"beautiful","fantastic"))

%>

De uitvoer van de bovenstaande code zal zijn:

This is a fantastic day!

Voorbeeld 2

Vervang de letter "i" door "##":

<%

txt="This is a beautiful day!"
response.write(Replace(txt,"i","##"))

%>

De uitvoer van de bovenstaande code zal zijn:

Th##s ##s a beaut##ful day!

Voorbeeld 3

Vervang de letter "i" door "##", beginnend op positie 15:

Merk op dat alle tekens vóór positie 15 worden verwijderd.

<%

txt="This is a beautiful day!"
response.write(Replace(txt,"i","##",15))

%>

De uitvoer van de bovenstaande code zal zijn:

t##ful day!

Voorbeeld 4

Vervang de 2 eerste voorkomens van de letter "i" door "##", beginnend bij positie 1:

<%

txt="This is a beautiful day!"
response.write(Replace(txt,"i","##",1,2))

%>

De uitvoer van de bovenstaande code zal zijn:

Th##s ##s a beautiful day!

Voorbeeld 5

Vervang de letter "t" door "##", met tekstuele en binaire vergelijking:

<%

txt="This is a beautiful day!"
response.write(Replace(txt,"t","##",1,-1,1) & "<br />")
response.write(Replace(txt,"t","##",1,-1,0))

%>

De uitvoer van de bovenstaande code zal zijn:

##his is a beau##iful day!
This is a beau##iful day!

❮Volledige VBScript-referentie