Difference between revisions of "Sv Length"
Jump to navigation
Jump to search
imported>Odessa (new) |
imported>Odessa (removed extraneous) |
||
Line 13: | Line 13: | ||
<pre> | <pre> | ||
string_var my_string | string_var my_string | ||
let my_string := "Ringo" | let my_string := "Ringo" | ||
Sv_Length my_string ; returns 5 | |||
</pre> | </pre> | ||
==Notes== | ==Notes== |
Latest revision as of 19:19, 28 June 2014
< [[::Category:Functions|Category:Functions]]
A function added by the New Vegas Script Extender.
Description
Added by NVSE V4. Returns the length of a string variable, which is the number of characters it contains.
Syntax
(int) Sv_Length ToMeasure:string_var
Example
string_var my_string let my_string := "Ringo" Sv_Length my_string ; returns 5
Notes
- Remember that strings are indexed from 0, so the location of the final character is always:
Sv_Length my_string - 1
.