$EXTRACTdoc
Keep in mind that
Characters are counted from 1., so instead
<FONT COLOR="#0000ff">$EXTRACT</FONT><FONT COLOR="#000000">(</FONT><FONT COLOR="#800000">{LabName}</FONT><FONT COLOR="#000000">,0,3)</FONT>
should be
<FONT COLOR="#0000ff">$EXTRACT</FONT><FONT COLOR="#000000">(</FONT><FONT COLOR="#800000">{LabName}</FONT><FONT COLOR="#000000">,1,3)</FONT>
In this case, it is uncritical, because
If the from value is 0 or a negative number, $EXTRACT returns a null string; however, if from is used with to, a from value of 0 or a negative number is treated as a value of 1.But in other cases it can lead to the wrong result.
- Log in to post comments