2.0
3.0
>
comp
>
gb
>
string
>
index
السابق
التالي
تحرير
إعادة تسمية
تراجع
بحث
الإدارة
المستندات
تحذير! هذه الصفحة لم يتم ترجمتها.
See english version
String.Index (gb)
STATIC
FUNCTION
Index
(
String
AS
String
,
Byte
AS
Integer
)
AS
Integer
Returns the index of the character at position
Pos
in the string.
مثال
DIM iInd AS Integer
DIM sStr AS String
sStr = "Benoît"
FOR iInd = 1 TO Len(sStr)
PRINT String.Index(sStr, iInd); " ";
NEXT
PRINT
1 2 3 4 5 5 6