; 大写转小写 String1 := "This is a test." StringLower, String1, String1 ; 即输出可以和输入一样. MsgBox % String1 MsgBox % Format("{:L}", "LOWER") ; Format等效写法 ; 小写转大写 String2 := "This is a test." StringUpper, String2, String2 MsgBox % String2 MsgBox % Format("{:U}", "upper") ; Format等效写法 ; "GONE with the WIND" 会被转换成 "Gone With The Wind". String3 := "This is a test." StringUpper, String3, String3, T MsgBox % String3 ; 类似重新排版英文语句 MsgBox % Format("{:T}", "title") ; Format等效写法
声明:站内资源为整理优化好的代码上传分享与学习研究,如果是开源代码基本都会标明出处,方便大家扩展学习路径。请不要恶意搬运,破坏站长辛苦整理维护的劳动成果。本站为爱好者分享站点,所有内容不作为商业行为。如若本站上传内容侵犯了原著者的合法权益,请联系我们进行删除下架。
评论(0)