Difference between
string,
substring and mid function
Answers
Answered by
5
The basic difference lies, how they indice the string characters. In case, if you have got string "TEST", the MID function will indice the characters as 1,2,3,4. But with String. substring they will be indiced as 0,1,2,3.
Answered by
0
Answer:
The basic difference lies, how they indice the string characters. In case, if you have got string "TEST", the MID function will indice the characters as 1,2,3,4. But with String. substring they will be indiced as 0,1,2,3.
Similar questions