From 72336429b6d6eabf48814e1921f7f1ece5b3c704 Mon Sep 17 00:00:00 2001 From: rainwater Date: Wed, 9 Oct 2002 15:34:44 +0000 Subject: [PATCH] String Functions is a chapter git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1357 212acab6-be3b-0410-9dea-997c60f758d6 --- Docs/src/string.but | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Docs/src/string.but b/Docs/src/string.but index 89a1912e..e37d2f24 100644 --- a/Docs/src/string.but +++ b/Docs/src/string.but @@ -1,12 +1,12 @@ -\H{stringinst} String Manipulation Instructions +\C{stringinst} String Manipulation Instructions -\S{StrCpy} StrCpy +\H{StrCpy} StrCpy StrCpy \e{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). -\S{StrLen} StrLen +\H{StrLen} StrLen StrLen \e{user_var(length output) str}