本帖最后由 Qokelate 于 2012-4-17 23:55 编辑
1.
if $String then ____
if stringlen($string) then _____
if $string<>'' then _____
这个其实已经讨论过,本次收集只是为了集中处理 见 http://www.autoitx.com/thread-31448-1-1.html
2.
if not fileexists() then ________
与
if bitand(fileexists(),0) then _________
3.
;由字符串ab11cd 得到 ab66cd ,假设11唯一
$string='ab11cd'
$NewString=stringreplace($string,'11','66')
与
$idx1 = StringInStr($string, '11', 0, 1)-1
$idx2 = StringInStr($string, '11', 0, -1)+1
$NewString = StringLeft($string, $idx1) & '66' & StringTrimLeft($string, $idx2)
本人无解,欢迎各抒己见,也欢迎提出你的优化讨论________ 但请不要进行无关讨论,谢谢!! |