got few minutes of free time....
Trying to narrow down the problem,
I developped my tdz1 function:
Code: Select all
function tdz1 random12, text1080
local R
filter lines of text1080 with regex \
pattern format("^(?:(?:%s)\\s){3}",replaceText(random12,return,"|")) \
into R
return R
end tdz1
Code: Select all
function tdz random12, text1080
local REX, gotIT, R
replace return with "|" in random12
put "^((?:(?:" & random12 & ")\s){3})" into REX
filter lines of text1080 with regex pattern REX into R
return R
end tdz
The only change I made is replacing this:
Code: Select all
replaceText(random12,return,"|"))
Code: Select all
replace return with "|" in random12
there is no more timing distorsion.
HTH for more precise investigation,
Thierry