如何检查输入是否包含某个字符?例如,如果我有这个:
word = inputbox("What time is it?")
我如何检查输入是否包含数字' 7'例如?我已经看过InStr Function
,但我不知道该为此使用它。这是正确的使用方法吗?我并不关心vbCompare
部分。
If Instr(word, "7") then
b=msgbox("OK", 0, "7")
wscript.quit
else
c=msgbox("No 7", 0, "None")
end if
答案 0 :(得分:-1)
您可以使用它来检查(更新):
tv = (TextView) findViewById(R.id.tv);
for(Product x : prodList) {
//append the text view
tv.append(x.getmTitle() + " " + x.getRating() + " \n");
}