Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我得到一个简单的问题,检查我的字符串是否包含任何字母字符的最简单方法是什么?而不是流过它。我试过“isAlphaNumeric”给我一个错误。
|a| a:= '1625.46brd'. "check if a includes alphabets "
a anySatisfy: [ :char | char isLetter ]
在这里,您a作为Collection进行迭代并检查是否有任何字符是字母。如果您不仅想要字母(我将字母理解为字母),则可以发送isAlphaNumeric消息。
a
isAlphaNumeric