标签:结果 字符截取函数 article art 字符截取 log http 包含 nbsp
原文:http://blog.csdn.net/hansoy/article/details/44941159
如字符串是 Dstr:= ‘Delphi is the BEST‘, 那么
LeftStr(Dstr, 5) :=‘Delph‘ 从左往右截取,长度是5
MidStr(Dstr, 6, 7) :=‘i is th‘ 从第6个字符开始截取,长度是7
RightStr(Dstr, 6) := ‘e BEST‘ 从右往左截取,长度是6
注意:这几个函数都包含在StrUtils中,所以需要uses StrUtils
-----------------------------------------------
另附Copy的用法,并与LeftStr对照:
LeftStr(dm.qry1.FieldByName(‘field1‘).AsString ,10)
Copy(dm.qry1.FieldByName(‘field1‘).AsString,1,10)
以上两个结果相等。
【转】delphi 字符截取函数LeftStr/MidStr/RightStr以及Copy的使用
标签:结果 字符截取函数 article art 字符截取 log http 包含 nbsp
原文地址:http://www.cnblogs.com/Zory/p/7384625.html