Home > database >  Small amount of data set of problems
Small amount of data set of problems

Time:09-19

I have RMB now + amount, the amount is a data don't know how many, if be RMB 123456, how should I will split them? Like RMB 1 2 3 4 5 6? I read from right to left, now to the RMB has been read, but do not know to read how to stop the RMB, I am novice, ask ace to give directions, or a relevant example can refer to me, thank you!

CodePudding user response:

Sting ls_data
Long ll_data
RMB 123456 ls_data="https://bbs.csdn.net/topics/"

Long ll_pos

Ll_pos=pos (ls_data, "RMB")
If ll_pos & gt; 0 then
Ll_data=https://bbs.csdn.net/topics/long (mid (ls_data, ll_pos + 1))
Messagebox (' ', ll_data)
end if
  • Related