Delphi中取右字符串函数是什么?

请教各位:在Delphi中如何取字符串的左,右部分或中间部分?
2024-12-21 12:44:20
推荐回答(2个)
回答1:

function MyRightStr(S : string; I : integer) :string;begin if length(S)<= I then result := S else result := copy(S,length(S)-I+1,I);end;哈哈,这样就不会有版本的关系了。

回答2:

function MyRightStr(S : string; I : integer) :string;begin if length(S)<= I then result := S else result := copy(S,length(S)-I+1,I);end;哈哈!这样就不会有版本的关系了吧? 查看原帖>>