标签: realbasic
如何使用Real Studio从字符串中获取子字符串的索引?
例如,我想在下面的示例中获得世界的索引
Dim str As String = "Hello World"
答案 0 :(得分:3)
查看http://docs.realsoftware.com/index.php/Instr
Dim pos As Integer pos = str.InStr("World")