Delphi 返回字符串的最后 3 个字符

问题描述 投票:0回答:2

我需要在delphi中获取字符串的最后3个字符。

我一直在谷歌搜索并找到LastDelimiter,但没有一个执行类似操作的示例。

关于我需要寻找什么或如何做到这一点有什么想法吗?

delphi substring
2个回答
22
投票

Unit StrUtils 包含函数 RightStr,这似乎是您正在寻找的。


0
投票

另一种方法:

和(复制(edtCustomerID.Text,长度(edtCustomerID.Text)-2,3)='123')

© www.soinside.com 2019 - 2024. All rights reserved.