Vba String Length

[Solved] Vba String Length | Vb - Code Explorer | yomemimo.com
Question : vba string length

Answered by : vastemonde

MsgBox Len("Helloworld !") ' 12

Source : | Last Update : Mon, 08 Feb 21

Question : vba string length

Answered by : oldfashioned-opossum-5rqjt7sjws3j

Dim myString as String
Dim arr() as String
Dim str_len as Integer
myString = "Come visit Mzansi over the holidays"
arr = Split(myString, " ")
'Compute string length i.e number of 'words'
str_len = UBound(arr) - LBound(arr) + 1

Source : | Last Update : Tue, 19 Jan 21

Answers related to vba string length

Code Explorer Popular Question For Vb