标签: .net text localization ranorex
我尝试在Ranorex中测试UI。我想查看在主页上所有文字都是英文。
但我不知道。我们怎么知道一个单词是否用英语?通过Googleapı或.NET
答案 0 :(得分:0)
您可以使用正则表达式(即^[a-zA-Z0-9 ]*$)以下列方式进行检查:
^[a-zA-Z0-9 ]*$
if( Regex.IsMatch("yourWord", "^[a-zA-Z0-9]*$") ) { ///Put the code here when word is english }