从变量中读取一个子字符串

来自ArcoWiki
Slia讨论 | 贡献2018年6月15日 (五) 07:31的版本 (创建页面,内容为“This is used to extract a sub-string from a string.<br/> *Extracting a Feature: ::<code><span style="color: green; text-decoration: none;">$$Declaring Base Variable…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航搜索

This is used to extract a sub-string from a string.

  • Extracting a Feature:
$$Declaring Base Variable
DECL/CHAR,100,str1,str2
str1=ASSIGN/'My full String'
$$Reading the word from char #4 to char #7
str2=ASSIGN/SUBSTR(str1,4,7)


  • This is used to read a string “char by char”:
$$Declaring Base Variable
DECL/CHAR,100,str1,str2,char_list[15]
DECL/INTGR,len_string,i
str1=ASSIGN/'My full String'
len_string=ASSIGN/LEN(str1)
$$Loop to read single char
DO/i,1,len_string
str2=ASSIGN/SUBSTR(str1,i,i)
char_list[i]=ASSIGN/str2
ENDDO