Hello,
I have done a CSP page that allows to measure timings. This shows that using a delimited string, is somehow "a slight" faster than using a list.
Running 10,000,000 iterations on the following code gives:
| Set a=$LB(1,2,3) Set b=$LG(a,2) | 1.214642 sec. |
| Set a="1_2_3" Set b=$P(a,"_",2) | 1.1711362 sec. |
- Log in to post comments