[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

(DTPtechNote:721) Re: Unicode textでの文字列比較



>as unicode textで、case無視で比較するんだから仕様としては
>正しいのでは?

considering?case
ってのは「大文字小文字を区別する」です。

>"AAA" as unicode text="AAA"as unicode text
>はtrueですが、
>"AAA"="AAA"
>はfalseなるし。
>"あああ"="アアア"
>はfalseですが、
>"あああ"as unicode text="アアア" as unicode text
>はtrueです。

それはこういうことだからですね。
http://developer.apple.com/documentation/AppleScript/Conceptual/AppleScriptLangGuide/AppleScript.37.html

>unicode textで文字列比較するなら、必ずconsidering case
>にしておかないといけないでしょうね。

まあ、納得はいかないけど、、、そういうことですね。