怎么在字符串a,b,c|d,e,f 中获取字符e
construct2吧
全部回复
仅看楼主
level 1
2017年11月06日 07点11分 1
level 4
2017年11月06日 08点11分 2
mid("a,b,c|d,e,f",8,1)
2017年11月06日 08点11分
level 13
这种格式固定的话可以使用两次tokenat,
txt=a,b,c|d,e,f
t1=tokenat(txt,1,"|")
t2=tokenat(t1,1,",") ==> t2="e"
2017年11月06日 10点11分 3
好的 多谢[太开心]
2017年11月07日 07点11分
level 5
获取||之间的第三个字符 Aven大神教的~
2017年11月10日 03点11分 4
1