EnglishРусский  

Ads

Perfect Automation tool
All-In-One: Script editor, Launcher, Scheduler, Keyboard & Mouse Recorder. Try now!

CreateInstall
Freeware and commercial installers.

Cell Phone Batteries
Batteries Plus offers batteries for laptop, camcorder, cell phone, camera.

Gentee needs your help!
How to advertise with us
 
laptop battery

str.replace

Replacing in a string. The method replaces data in a string.

method str str.replace (
   uint offset,
   uint size,
   str value
)

Parameters

offset The offset of the data being replaced.
size The size of the data being replaced.
value The string being inserted.

Return value

Returns the object which method has been called.


str.replace

The method looks for strings from one array and replace to strings of another array.

method str str.replace (
   arrstr aold,
   arrstr anew,
   uint flags
)

Parameters

aold The strings to be replaced.
anew The new strings.
flags Flags.
$QS_IGNCASECase-insensitive search.
$QS_WORDSearch the whole word only.
$QS_BEGINWORDSearch words which start with the specified pattern.

Return value

Returns the object which method has been called.


str.replace

The method replaces one string to another string in the source string.

method str str.replace (
   str sold,
   str snew,
   uint flags
)

Parameters

sold The string to be replaced.
snew The new string.
flags Flags.
$QS_IGNCASECase-insensitive search.
$QS_WORDSearch the whole word only.
$QS_BEGINWORDSearch words which start with the specified pattern.

Return value

Returns the object which method has been called.

Related links

Source

Edit