Re: Extracting data from edit box
Correction :
The while loop to delete the " does not what you want, you
can use
tempstring := stringreplace(tempstring,'@','',[rfReplaceall]);
tempstring := stringreplace(tempstring,'"','',[rfReplaceall]);
to delete them
wolf
.
Relevant Pages
- Re: [PATCH 1/2] time: logrithmic time accumulation
... correction for 20ms to correct a 2us offset, with NOHZ they either get ... no correction, or a 50us correction. ... there will always be some granularity error for applying frequency ... This reduces the number of times through the loop needed keeping ... (Linux-Kernel) - Re: [PATCH 1/2] time: logrithmic time accumulation
... correction for 20ms to correct a 2us offset, with NOHZ they either get ... no correction, or a 50us correction. ... there will always be some granularity error for applying frequency ... This reduces the number of times through the loop needed keeping ... (Linux-Kernel) - Re: [PATCH 1/2] time: logrithmic time accumulation
... correction for 20ms to correct a 2us offset, with NOHZ they either get ... no correction, or a 50us correction. ... there will always be some granularity error for applying frequency ... This reduces the number of times through the loop needed keeping ... (Linux-Kernel) - Re: processing a sequence
... (loop for sublist = (collect-sublist) ... return accum if not element = list.first ... if prev and element < prev ... James still didn?t show his Ruby one-liner that outperforms the Lisp ... (comp.lang.lisp) - [RFC][PATCH] Logarithmic Timekeeping Accumulation
... Accumulating one tick at a time works well unless we're using NOHZ. ... no correction, or a 50us correction. ... This reduces the number of times through the loop needed keeping ... * case of lost or late ticks, it will accumulate correctly. ... (Linux-Kernel) |
|