此方法返回一个字符串在另一个字符串中的位置。
pos(substr,string1)
string1 - 源字符串。
substr - 要在主字符串中搜索的子字符串。
/* Main program */ a = "Hello World" say pos("Hello",a)
当我们运行上述程序时,我们将得到以下结果。
1