String Length in IDE

  • Thread starter Thread starter Guadala Harry
  • Start date Start date
G

Guadala Harry

Just wondering if there is a quick way to get the length of a string
variable while debugging. I don't want to have to modify the code and
restart the application in order to get the length of a string variable.

Thanks!
 
I figured it out... for those interested:
when execution is paused, open the Command window and just append
[.Length] to your variable. For example if you have a string variable named
'stringVariable' then enter the following in the Command window:

? stringVariable.Length
 
Back
Top