﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2370	StringReplace & StringRegExpReplace Add Offset\The starting position of the search	anonymous	Jon	"would be very useful to add the ""Offset\The starting position of the search"" in StringReplace\StringRegExpReplace to work much more faster with strings

it seems that in xxx works really well and quickly, instead ddd does not work well in almost as if it does not work at all


{{{
Local $sFileData, $iString, $iTimerDiff

$sFileData =  FileRead(@DesktopDir& ""\test.ini"") ; test.ini = 10 Mb - includes inside, the string TestXXXX

$iTimerDiff = TimerInit()
$iString = StringInStr($sFileData, ""TestXXXX"", 1, 1, 2767600)
$iTimerDiff = TimerDiff($iTimerDiff)
ConsoleWrite($iString & "" - "" & $iTimerDiff & @LF)

$iTimerDiff = TimerInit()
$iString = StringRegExp($sFileData, ""TestXXXX"")
$iTimerDiff = TimerDiff($iTimerDiff)
ConsoleWrite($iString & "" - "" & $iTimerDiff & @LF)

$iTimerDiff = TimerInit()
$iString = StringRegExp($sFileData, ""TestXXXX"", 0, 2767600)
$iTimerDiff = TimerDiff($iTimerDiff)
ConsoleWrite($iString & "" - "" & $iTimerDiff & @LF)

2767692 - 0.00829366853445348
1 - 34.3946332855723
1 - 29.7493890330846
}}}


however looking at the speed of StringInStr, and also have this option in StringReplace\StringRegExpReplace would be really helpful

Sorry for my english

Ciao."	Feature Request	assigned		AutoIt		None			
