Y Yves Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-04 #1 当我使用 leftstr()函数后,执行run命令 系统竟告诉我 “不可识别的标识符leftstr” 我又试了试 相关的 midstr 都是不可识别。 这是怎么回事呢?请指教。
Y yzhshi Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-04 #3 [?] leftstr,没听说过呀。是Delphi里面的吗?在Delphi中使用Copy. SQL 语句中和特定数据库有关。
D dodo Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-04 #4 在Delphi中很多函数的使用是需要在USES中加入引用单元的,如API函数需要加SHELLAPI 很多数学函数需要加MATH等 leftstr()是在StrUtils.pas中定义的,所以要在USES中加入StrUtils单元,其返回一个 指定长度的字符串从源字符串的左边开始! 例: LeftStr('Programmer', 7) 返回值:'Program'
在Delphi中很多函数的使用是需要在USES中加入引用单元的,如API函数需要加SHELLAPI 很多数学函数需要加MATH等 leftstr()是在StrUtils.pas中定义的,所以要在USES中加入StrUtils单元,其返回一个 指定长度的字符串从源字符串的左边开始! 例: LeftStr('Programmer', 7) 返回值:'Program'
Y Yves Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-04 #5 谢谢 诸位帮忙 我刚从 vb 到 delphi 还不知有这规矩 多谢了 》》yzhshi leftstr 是 左截 字符串
Y yzhshi Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-04 #6 呵呵,我找到了,原来是Delphi6提供的函数,在Delphi5中没有。 其实它还是调用Copy的。 function LeftStr(const AText: string; const ACount: Integer): string; begin Result := Copy(AText, 1, ACount); end;
呵呵,我找到了,原来是Delphi6提供的函数,在Delphi5中没有。 其实它还是调用Copy的。 function LeftStr(const AText: string; const ACount: Integer): string; begin Result := Copy(AText, 1, ACount); end;