For example, say s开发者_Python百科trWord = "Burger". I want to create a new string strTrimmedWord, such that it strTrimmedWord = "urger" (B is gone).
How do I do this?
Use the Mid
function:
strTrimmedWord = Mid(strWord, 2)
For example, say s开发者_Python百科trWord = "Burger". I want to create a new string strTrimmedWord, such that it strTrimmedWord = "urger" (B is gone).
How do I do this?
Use the Mid
function:
strTrimmedWord = Mid(strWord, 2)
精彩评论