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.
RanorexでUIをテストしようとしています。ホームページでチェックしたいのですが、全文は英語です。
しかし、私はそれを知りません。英語の単語かどうかはどうやってわかりますか?Googleapıまたは.NETによる
正規表現を使用して、つまり^[a-zA-Z0-9 ]*$次の方法で確認できます。
^[a-zA-Z0-9 ]*$
if( Regex.IsMatch("yourWord", "^[a-zA-Z0-9]*$") ) { ///Put the code here when word is english }