vb.net:在字符串中查找字符串的位置?

时间:2009-10-28 19:02:04

标签: vb.net

是否在vb.net中使用了instr?

3 个答案:

答案 0 :(得分:9)

答案 1 :(得分:5)

您可以在字符串上使用 IndexOf 方法,如果您愿意,也可以使用VB InStr 功能,尽管我建议坚持使用.NET特定功能。

我还建议您查看documentation of the String methods,它将帮助您了解使用字符串时框架中可用的功能。您还可以查看documentation for VB-specific string functions

答案 2 :(得分:3)

没有indexof