天软金融分析.NET函数大全
>
TSL函数
>
基础函数
>
数组
>
数组下标以及长度相关函数
GetStrIndexs
复制链接
简述
返回数组类型,存储参数Value的所有的字符串下标
定义
getstrindexs(value:Array):Array of String;
参数
名称
类型
说明
value
Array
数组类型
返回
Array of String
字符串数组。
范例
arr:=array("a1":1,"a2":2,"a3":3);
return GetStrIndexs(arr);
//输出:array(“a1”,”a2”,”a3”)。
返回结果:
参考
GetIntIndexs
GetAllIndexs
相关
GetStrIndexNum
GetStrIndexs
GetIntIndexs
GetAllIndexs
DeleteIndex
DeleteField
Length