delphi StrUtils.LeftStr、StrUtils.RightStr - 提取左右字符串


本文整理自网络,侵删。

 StrUtils.LeftStr、StrUtils.RightStr - 提取左右字符串
举例:
--------------------------------------------------------------------------------

var
ss,s: string;
begin
ss := 'CodeGear Delphi 2007';
s := RightStr(ss,4);
ShowMessage(s); {2007}

s := LeftStr(ss,4);
ShowMessage(s); {Code}
end;

相关阅读 >>

Delphi 中的颜色

Delphi 2009 中 tstrings 与 tstream 的增强

Delphi 病毒

Delphi 执行dos命令并捕获输出

Delphi removewhitespaces 过滤字符串所有空格

Delphi 端口扫描器原理

Delphi 根据注册表信息判断程序是否安装

Delphi 获取星期的函数

Delphi中的字符串比较(comparestr)

Delphi trimright 删除字符串右边的空格

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...