[asterisk-commits] trunk - r7471 in /trunk: ./ doc/README.variables
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Tue Dec 13 12:54:42 CST 2005
Author: kpfleming
Date: Tue Dec 13 12:54:41 2005
New Revision: 7471
URL: http://svn.digium.com/view/asterisk?rev=7471&view=rev
Log:
Merged revisions 7470 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r7470 | kpfleming | 2005-12-13 12:54:22 -0600 (Tue, 13 Dec 2005) | 2 lines
clarify substring documentation
........
Modified:
trunk/ (props changed)
trunk/doc/README.variables
Propchange: trunk/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Tue Dec 13 12:54:41 2005
@@ -1,1 +1,1 @@
-/branches/1.2:1-7468
+/branches/1.2:1-7470
Modified: trunk/doc/README.variables
URL: http://svn.digium.com/view/asterisk/trunk/doc/README.variables?rev=7471&r1=7470&r2=7471&view=diff
==============================================================================
--- trunk/doc/README.variables (original)
+++ trunk/doc/README.variables Tue Dec 13 12:54:41 2005
@@ -94,17 +94,17 @@
-_______________________________
-REMOVING CHARACTERS FROM STRING
--------------------------------
-
-The format for removing characters from a variable can be expressed as:
+___________________________________
+SELECTING CHARACTERS FROM VARIABLES
+-----------------------------------
+
+The format for selecting characters from a variable can be expressed as:
${variable_name[:offset[:length]]}
-If you want to remove the first N characters from the string assigned
+If you want to select the first N characters from the string assigned
to a variable, simply append a colon and the number of characters to
-remove from the beginning of the string to the variable name.
+skip from the beginning of the string to the variable name.
;Remove the first character of extension, save in "number" variable
exten => _9X.,1,Set(number=${EXTEN:1})
@@ -115,7 +115,7 @@
digit.
If you use a negative offset number, Asterisk starts counting from the end
-of the string and then removes everything before the new position. The following
+of the string and then selects everything after the new position. The following
example will save the numbers 1234 to the 'number' variable, still assuming
we've dialed 918005551234.
More information about the asterisk-commits
mailing list