串s1=‘abcdefg’,s2=‘hijkl’,则concat(substr(s1,2,strlen(s2)),substr(s1,strlen(s2),2))=_________。

admin2014-12-25  21

问题 串s1=‘abcdefg’,s2=‘hijkl’,则concat(substr(s1,2,strlen(s2)),substr(s1,strlen(s2),2))=_________。

选项

答案‘bcdefef’

解析 concat(sLtbstr(s1,2,strlen(s2)),substr(s1,strlen(s2),2))
    =concat(substr(s1,2,5),substr(s1,5,2))
    =concat(bcdd,ef)
    =‘bcdefef’
转载请注明原文地址:https://kaotiyun.com/show/qZVx777K
0

随机试题
最新回复(0)