Oxygen Basic
Programming => Problems & Solutions => Topic started by: jcfuller on August 07, 2019, 01:54:23 AM
-
Charles,
I notice you put padstr and numstr in StringUtil.
Would you please explain the mid(s,-dp ) in this line???
s=ng+left(s,ls-dp)+"."+mid(s,-dp)
Thank you.
James
-
Hi James,
A inegative index in mid counts from the right, instead of the left:
string s="abcdef"
print mid(s,-2) 'ef
-
Charles,
Isn't that the same as right(s,dp) ??
James
-
Yes, the o2 right is a macro based on mid.