Well since since srl already contains StartsWith(prefix, s: string) i'm suggesting the addition of EndsWith(suffix, s: string);
Here is the code
Simba Code:function EndsWith(suffix, s: String): boolean;
begin
Result := suffix = Copy(s, Length(s)-Length(suffix)+1, Length(suffix));
end;
Btw where is the StartsWith located in the include? I couldn't find.






Reply With Quote








Grazz for that MasterBB.

