Updated docs

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1609 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
rainwater 2002-11-06 21:20:55 +00:00
parent 9e16ba98b8
commit 90ea8491f4
22 changed files with 246 additions and 243 deletions

View file

@ -1,12 +1,12 @@
\C{stringinst} String Manipulation Instructions
\H{stringinst} String Manipulation Instructions
\H{StrCpy} StrCpy
\S{StrCpy} StrCpy
\c user_var(destination) str [maxlen] [start_offset]
Sets the user variable $x with str. Note that str can contain other variables, or the user variable being set (concatenating strings this way is possible, etc). If maxlen is specified, the string will be a maximum of maxlen characters (if maxlen is negative, the string will be truncated abs(maxlen) characters from the end). If start_offset is specified, the source is offset by it (if start_offset is negative, it will start abs(start_offset) from the end of the string).
\H{StrLen} StrLen
\S{StrLen} StrLen
\c user_var(length output) str