Difference between revisions of "Spaces"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Returns a string expression consisting of a specified number of spaces. ==== Usage ==== <syntaxhighlight>Spaces(Num)</syntaxhighlight> Where: Num - a numerical expre...")
 
Line 7: Line 7:
 
   
 
   
 
==== Example ====
 
==== Example ====
<syntaxhighlight>The example inserts two blank spaces between the letters "a" and "b":
+
The example inserts two blank spaces between the letters "a" and "b":
  
  
Print("a"+Spaces(2)+"b");</syntaxhighlight>
+
<syntaxhighlight>Print("a"+Spaces(2)+"b");</syntaxhighlight>
  
  
 
[[Category:Text Manipulation]]
 
[[Category:Text Manipulation]]

Revision as of 13:11, 27 January 2012

Returns a string expression consisting of a specified number of spaces.

Usage

Spaces(Num)

Where: Num - a numerical expression specifying the number of spaces

Example

The example inserts two blank spaces between the letters "a" and "b":


Print("a"+Spaces(2)+"b");