我正在尝试在igor pro中找到字符串操作的文档。特别是,用于从字符串中追加和剥离元素的函数。 igor pro是否有这样的内置函数,是否在某处列出了igor pro中的所有字符串操作函数?
答案 0 :(得分:1)
基本字符串操作:
string str = "abcd"
print str[1,inf] // prints bcd
string suffix = "1234"
str += suffix
print str // prints abcd1234
字符串函数:
cmpstr: Compare two strings for equality
strlen: Length of a string
str2num/num2str/num2istr: Convert from/to strings
LowerStr/UpperStr: Change case
strsearch: Search inside a string
StringMatch/GrepString: Fancy string matching using wildcards/regexps
RemoveEnding: Removes a known suffix from a string
所有字符串功能都列在PDF手册的V-10中。
伊戈尔特产:
strswitch
是字符串的开关语句? :
)不能与字符串一起使用,请使用SelectString
StringByKey/ReplaceStringByKey/NumberByKey