delphi 文件名变小写的函数


本文整理自网络,侵删。

 {文件名变小写}
function LowerCase(const S: string): string;
var
Ch: Char;
L: Integer;
Source, Dest: PChar;
begin
L := Length(S);
SetLength(Result, L);
Source := Pointer(S);
Dest := Pointer(Result);
while L <> 0 do
begin
Ch := Source^;
if (Ch >= 'A') and (Ch <= 'Z') then Inc(Ch, 32);
Dest^ := Ch;
Inc(Source);
Inc(Dest);
Dec(L);
end;
end;

相关阅读 >>

Delphi 调用shellexecute打开txt文本

Delphi压缩与解压_不需要特别的控件

Delphi 根据delta自动生成sql语句

Delphi中使用isuperobject解析json数据

Delphi comobj调用wmplayer播放音乐

Delphi 禁用本地网络连接/启用本地网络连接

Delphi 不重启不注销不关explorer刷新注册表

Delphi在postgresql中读写二进制数据

Delphi 在listview控件中绘底图

cnwizards cnpack ide 专家包

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



打赏

取消

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

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

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

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

评论

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