Description
Searches file for specified text-string and replace it with a new string
Syntax
File_ReplaceInFile(sFile, sSearchString, sReplacementString, bOnlyFirstOccurence, bIgnoreCase) As Boolean
Parameters
sFile (String)
Source-file
sSearchString (String)
String to replace
sReplacementString (String)
New string
bOnlyFirstOccurence (Boolean)
Only first matching string will be replaced
bIgnoreCase (Boolean)
Ignore case
Example
VBScript
If bStatus Then bStatus = File_ReplaceInFile("C:\CapaInstaller.txt", "1999", "2000", False, True)
Related functions
File_AppendToFile File_FindInFile File_GetLineString File_InsertInFile