熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Delphi編程 >> 正文

Delphi開發經驗技巧寶典:字符中的轉換[4]

2022-06-13   來源: Delphi編程 
    ——此文章摘自《Delphi開發經驗技巧寶典》定價 特價 購買>>http://tracklinktechcn/?m_id=dangdang&a_id=A&l=&l_type= width= height= border= nosave>

http://developcsaicn/delphi/images/jpg>
  將字符串首字母大寫

    主要代碼如下
    procedure TFormButtonClick(Sender: TObject);
    var
     s:String;
     i:Integer;
    begin
     i:=Length(EditText);
     s:=AnsiMidstr(EditText);
     s:=Ansiuppercase(s);
     EditText:=s+Ansilowercase(AnsiMidstr(EditTexti));
    end;

right>[http://developcsaicn/delphi/htm>]  [http://developcsaicn/delphi/htm>]  [http://developcsaicn/delphi/htm>]  []  


From:http://tw.wingwit.com/Article/program/Delphi/201311/8488.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.