<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://m204wiki.rocketsoftware.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=John</id>
	<title>m204wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://m204wiki.rocketsoftware.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=John"/>
	<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=Special:Contributions/John"/>
	<updated>2026-06-23T11:55:17Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=Unspace_(String_function)&amp;diff=1863</id>
		<title>Unspace (String function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=Unspace_(String_function)&amp;diff=1863"/>
		<updated>2012-06-10T22:21:25Z</updated>

		<summary type="html">&lt;p&gt;John: /* Syntax terms */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:Unspace subtitle}}&lt;br /&gt;
The &amp;lt;var&amp;gt;Unspace&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function removes the whitespace characters from the method object string and it returns the resulting string. Options are available to:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
Define which character or characters are to be interpreted as whitespace&amp;lt;li&amp;gt;Remove leading whitespace, trailing whitespace, both or neither;&amp;lt;li&amp;gt;Collapse to a single whitespace character any sequences of non-leading, non-trailing whitespace&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:Unspace syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%outString&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A variable to receive the string result of the &amp;lt;var&amp;gt;Unspace&amp;lt;/var&amp;gt; method.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The input method object string&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;var&amp;gt;Spaces&amp;lt;/var&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;Spaces&amp;lt;/var&amp;gt; is an optional, [[Methods#Named parameters|name required]], parameter, which is a string that specifies the set of characters considered to be whitespace. The default set is the blank space (&amp;lt;code&amp;gt;&#039; &#039;&amp;lt;/code&amp;gt;) character.  If you specify multiple &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;Spaces&amp;lt;/var&amp;gt; characters:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;There is no separator character.&amp;lt;li&amp;gt;The first character of the string is the replacement space character: a single one of these is substituted for each sequence (which may be one) of non-leading, non-trailing Spaces characters in the method object string.&amp;lt;/ul&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;var&amp;gt;Leading&amp;lt;/var&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;Leading&amp;lt;/var&amp;gt; is an optional, but &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;Name-Required&amp;lt;/var&amp;gt;, parameter, which is a &amp;lt;var&amp;gt;[[Enumerations#Using_Boolean_enumerations|&amp;quot;Boolean Enumeration&amp;quot;]]&amp;lt;/var&amp;gt; value that specifies whether to strip all leading whitespace characters. The default is &amp;lt;code&amp;gt;True&amp;lt;/code&amp;gt;, strip leading whitespace.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;var&amp;gt;Trailing&amp;lt;/var&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;Trailing&amp;lt;/var&amp;gt; is an optional, but &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;Name-Required&amp;lt;/var&amp;gt;, parameter, which is a &amp;lt;var&amp;gt;[[Enumerations#Using_Boolean_enumerations|&amp;quot;Boolean Enumeration&amp;quot;]]&amp;lt;/var&amp;gt; value that specifies whether to strip all trailing whitespace characters. The default is &amp;lt;code&amp;gt;True&amp;lt;/code&amp;gt;, strip trailing whitespace.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;var&amp;gt;Compress&amp;lt;/var&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;Compress&amp;lt;/var&amp;gt; is an optional, but &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;Name-Required&amp;lt;/var&amp;gt;, parameter, which is a &amp;lt;var&amp;gt;[[Enumerations#Using_Boolean_enumerations|&amp;quot;Boolean Enumeration&amp;quot;]]&amp;lt;/var&amp;gt; value that specifies whether to collapse sequences of spaces to single spaces. The default is &amp;lt;code&amp;gt;True&amp;lt;/code&amp;gt;, collapse such sequences.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Duplicate Spaces characters are tolerated and do not affect the result.&lt;br /&gt;
&amp;lt;li&amp;gt;Prior to &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;Sirius Mods&amp;lt;/var&amp;gt; Version 7.8, &amp;lt;var&amp;gt;Unspace&amp;lt;/var&amp;gt; compressed a string consisting entirely of whitespace characters to a single whitespace character. As of Version 7.8 (and also in Version 7.7 maintenance), &amp;lt;var&amp;gt;Unspace&amp;lt;/var&amp;gt; converts a string of whitespace characters to a null string. The Version 7.8 result of&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;printText {~} = X{&#039;    &#039;:unspace}X&amp;lt;/p&amp;gt;&lt;br /&gt;
is:&lt;br /&gt;
&amp;lt;p class=&amp;quot;output&amp;quot;&amp;gt;&#039;    &#039;:unspace = XX&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;Unspace&amp;lt;/var&amp;gt; is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.3.&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;The following are example &amp;lt;var&amp;gt;Unspace&amp;lt;/var&amp;gt; statements:&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;%ls is longstring&lt;br /&gt;
%ls = &#039;    so  me     chars   &#039;&lt;br /&gt;
&lt;br /&gt;
[[PrintText statement|printText]] {~} = {%ls:unspace()}&lt;br /&gt;
printText {~} = {%ls:unspace(Spaces=&#039;X &#039;)}&lt;br /&gt;
printText {~} = {%ls:unspace(leading=false)}&lt;br /&gt;
printText {~} = {%ls:unspace(trailing=false)}&lt;br /&gt;
printText {~} = {%ls:unspace(compress=false)}&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
The results are respectively:&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;%ls:unspace() = so me chars&lt;br /&gt;
%ls:unspace(Spaces=&#039;X &#039;) = soXmeXchars&lt;br /&gt;
%ls:unspace(leading=false) =  so me chars&lt;br /&gt;
%ls:unspace(trailing=false) = so me chars&lt;br /&gt;
%ls:unspace(compress=false) = so  me     chars&lt;br /&gt;
&amp;lt;/p&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:String:Unspace footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=Unspace_(String_function)&amp;diff=1862</id>
		<title>Unspace (String function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=Unspace_(String_function)&amp;diff=1862"/>
		<updated>2012-01-08T23:15:16Z</updated>

		<summary type="html">&lt;p&gt;John: /* Syntax terms */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:Unspace subtitle}}&lt;br /&gt;
The &amp;lt;var&amp;gt;Unspace&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function removes the whitespace characters from the method object string and it returns the resulting string. Options are available to:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
Define which character or characters are to be interpreted as whitespace&amp;lt;li&amp;gt;Remove leading whitespace, trailing whitespace, both or neither;&amp;lt;li&amp;gt;Collapse to a single whitespace character any sequences of non-leading, non-trailing whitespace&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:Unspace syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%outString&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A variable to receive the string result of the &amp;lt;var&amp;gt;Unspace&amp;lt;/var&amp;gt; method.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The input method object string&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;var&amp;gt;Spaces&amp;lt;/var&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;Spaces&amp;lt;/var&amp;gt; is an optional, but [[Methods#Named parameters|name required]], parameter, which is a string that specifies the set of characters considered to be whitespace. The default set is the blank space (&amp;lt;code&amp;gt;&#039; &#039;&amp;lt;/code&amp;gt;) character.  If you specify multiple &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;Spaces&amp;lt;/var&amp;gt; characters:&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;There is no separator character.&amp;lt;li&amp;gt;The first character of the string is the replacement space character: a single one of these is substituted for each sequence (which may be one) of non-leading, non-trailing Spaces characters in the method object string.&amp;lt;/ul&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;var&amp;gt;Leading&amp;lt;/var&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;Leading&amp;lt;/var&amp;gt; is an optional, but &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;Name-Required&amp;lt;/var&amp;gt;, parameter, which is a &amp;lt;var&amp;gt;[[Enumerations#Using_Boolean_enumerations|&amp;quot;Boolean Enumeration&amp;quot;]]&amp;lt;/var&amp;gt; value that specifies whether to strip all leading whitespace characters. The default is &amp;lt;code&amp;gt;True&amp;lt;/code&amp;gt;, strip leading whitespace.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;var&amp;gt;Trailing&amp;lt;/var&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;Trailing&amp;lt;/var&amp;gt; is an optional, but &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;Name-Required&amp;lt;/var&amp;gt;, parameter, which is a &amp;lt;var&amp;gt;[[Enumerations#Using_Boolean_enumerations|&amp;quot;Boolean Enumeration&amp;quot;]]&amp;lt;/var&amp;gt; value that specifies whether to strip all trailing whitespace characters. The default is &amp;lt;code&amp;gt;True&amp;lt;/code&amp;gt;, strip trailing whitespace.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;var&amp;gt;Compress&amp;lt;/var&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;Compress&amp;lt;/var&amp;gt; is an optional, but &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;Name-Required&amp;lt;/var&amp;gt;, parameter, which is a &amp;lt;var&amp;gt;[[Enumerations#Using_Boolean_enumerations|&amp;quot;Boolean Enumeration&amp;quot;]]&amp;lt;/var&amp;gt; value that specifies whether to collapse sequences of spaces to single spaces. The default is &amp;lt;code&amp;gt;True&amp;lt;/code&amp;gt;, collapse such sequences.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Duplicate Spaces characters are tolerated and do not affect the result.&lt;br /&gt;
&amp;lt;li&amp;gt;Prior to &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;Sirius Mods&amp;lt;/var&amp;gt; Version 7.8, &amp;lt;var&amp;gt;Unspace&amp;lt;/var&amp;gt; compressed a string consisting entirely of whitespace characters to a single whitespace character. As of Version 7.8 (and also in Version 7.7 maintenance), &amp;lt;var&amp;gt;Unspace&amp;lt;/var&amp;gt; converts a string of whitespace characters to a null string. The Version 7.8 result of&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;printText {~} = X{&#039;    &#039;:unspace}X&amp;lt;/p&amp;gt;&lt;br /&gt;
is:&lt;br /&gt;
&amp;lt;p class=&amp;quot;output&amp;quot;&amp;gt;&#039;    &#039;:unspace = XX&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;Unspace&amp;lt;/var&amp;gt; is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.3.&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;The following are example &amp;lt;var&amp;gt;Unspace&amp;lt;/var&amp;gt; statements:&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;%ls is longstring&lt;br /&gt;
%ls = &#039;    so  me     chars   &#039;&lt;br /&gt;
&lt;br /&gt;
[[PrintText statement|printText]] {~} = {%ls:unspace()}&lt;br /&gt;
printText {~} = {%ls:unspace(Spaces=&#039;X &#039;)}&lt;br /&gt;
printText {~} = {%ls:unspace(leading=false)}&lt;br /&gt;
printText {~} = {%ls:unspace(trailing=false)}&lt;br /&gt;
printText {~} = {%ls:unspace(compress=false)}&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
The results are respectively:&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;%ls:unspace() = so me chars&lt;br /&gt;
%ls:unspace(Spaces=&#039;X &#039;) = soXmeXchars&lt;br /&gt;
%ls:unspace(leading=false) =  so me chars&lt;br /&gt;
%ls:unspace(trailing=false) = so me chars&lt;br /&gt;
%ls:unspace(compress=false) = so  me     chars&lt;br /&gt;
&amp;lt;/p&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:String:Unspace footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=ToRadians_(Float_function)&amp;diff=43502</id>
		<title>ToRadians (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=ToRadians_(Float_function)&amp;diff=43502"/>
		<updated>2011-05-04T17:46:32Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:Float:ToRadians subtitle}}  The &amp;lt;var&amp;gt;ToRadians&amp;lt;/var&amp;gt; &amp;lt;var&amp;gt;intrinsic&amp;lt;/var&amp;gt; function converts a number represented in degrees to radians.  ==Syntax...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:ToRadians subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;ToRadians&amp;lt;/var&amp;gt; &amp;lt;var&amp;gt;[[Intrinsic classes|intrinsic]]&amp;lt;/var&amp;gt; function converts a number represented in degrees to radians.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:ToRadians syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%number&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A variable to receive the converted radians value. &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; degrees value.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;ToRadians&amp;lt;/var&amp;gt; is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.8.&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;The following displays &amp;lt;code&amp;gt;6.28318530717959&amp;lt;/code&amp;gt;:&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;[[PrintText statement|printText]] {360:toRadians}&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:ToRadians footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=ToDegrees_(Float_function)&amp;diff=43497</id>
		<title>ToDegrees (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=ToDegrees_(Float_function)&amp;diff=43497"/>
		<updated>2011-05-04T17:46:32Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:Float:ToDegrees subtitle}}  The &amp;lt;var&amp;gt;ToDegrees&amp;lt;/var&amp;gt; &amp;lt;var&amp;gt;intrinsic&amp;lt;/var&amp;gt; function converts a number represented in radians to degrees.  ==Syntax...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:ToDegrees subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;ToDegrees&amp;lt;/var&amp;gt; &amp;lt;var&amp;gt;[[Intrinsic classes|intrinsic]]&amp;lt;/var&amp;gt; function converts a number represented in radians to degrees.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:ToDegrees syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%number&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A variable to receive the converted degrees value. &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; radians value.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;ToDegrees&amp;lt;/var&amp;gt; is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.8.&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;The following displays &amp;lt;code&amp;gt;180&amp;lt;/code&amp;gt;:&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;[[PrintText statement|printText]] {$pi:toDegrees}&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:ToDegrees footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=StringTokenizer_(String_function)&amp;diff=43417</id>
		<title>StringTokenizer (String function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=StringTokenizer_(String_function)&amp;diff=43417"/>
		<updated>2011-04-13T00:21:16Z</updated>

		<summary type="html">&lt;p&gt;John: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:StringTokenizer subtitle}}&lt;br /&gt;
&lt;br /&gt;
This method returns a new instance of a &amp;lt;var&amp;gt;StringTokenizer&amp;lt;/var&amp;gt; object using the method string as the tokenizer string.&lt;br /&gt;
It has three optional arguments that let you specify the delimiter characters&lt;br /&gt;
that determine the tokens in the string that is being tokenized.&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:StringTokenizer syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%stringTokenizer&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;StringTokenizer&amp;lt;/var&amp;gt; object expression to contain the new object instance. &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The string to be tokenized.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;var&amp;gt;TokenChars&amp;lt;/var&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;This name required string argument &amp;lt;var&amp;gt;TokenChars&amp;lt;/var&amp;gt; is a set of single-character token-delimiters (delimiters that are also tokens) that may be separated by whitespace characters.&lt;br /&gt;
&amp;lt;var&amp;gt;TokenChars&amp;lt;/var&amp;gt; is an optional argument that defaults to a null string. &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;var&amp;gt;Spaces&amp;lt;/var&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;This name required string argument &amp;lt;var&amp;gt;Spaces&amp;lt;/var&amp;gt; is a set of &amp;quot;whitespace&amp;quot; characters, that is, characters that separate tokens. Each of these characters is a &amp;quot;non-token delimiter,&amp;quot; a delimiter that is not itself a token.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;Spaces&amp;lt;/var&amp;gt; is an optional argument that defaults to a blank character. &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;var&amp;gt;Quotes&amp;lt;/var&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;This name required string argument &amp;lt;var&amp;gt;Quotes&amp;lt;/var&amp;gt; is a set of quotation characters. The text between each disjoint pair of identical quotation characters (a &amp;quot;quoted region&amp;quot;) is treated as a single token, and any delimiter characters (Quote, Space, or TokenChar) within a quoted region are treated as non-delimiters.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;Quotes&amp;lt;/var&amp;gt; is an optional argument that defaults to a null string.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;A character may belong to at most one of the Spaces,&lt;br /&gt;
Quotes, or TokenChars sets of characters.&lt;br /&gt;
&amp;lt;li&amp;gt;If you are specifying Spaces, Quotes, or TokenChars,&lt;br /&gt;
each character in the string is a quotation&lt;br /&gt;
character &amp;amp;amp;mdash; that is, you may not separate characters &amp;amp;amp;mdash; and no character&lt;br /&gt;
may repeat (except for apostrophe, which may be doubled).&lt;br /&gt;
&amp;lt;li&amp;gt;A quoted region is not affected by the [[TokensToLower (StringTokenizer property)|TokensToLower]]&lt;br /&gt;
and [[TokensToUpper (StringTokenizer property)|TokensToUpper]] properties.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;begin&lt;br /&gt;
%tok is object stringtokenizer&lt;br /&gt;
&lt;br /&gt;
%tok = &#039;foo bar&#039;:stringTokenizer&lt;br /&gt;
&lt;br /&gt;
printText {~} is &#039;{%tok:string}&#039;&lt;br /&gt;
&lt;br /&gt;
repeat while not %tok:atEnd&lt;br /&gt;
   printText {~} is &#039;{%tok:nextToken}&#039;&lt;br /&gt;
end repeat&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The result is:&lt;br /&gt;
&amp;lt;p class=&amp;quot;output&amp;quot;&amp;gt;%tok:string is &#039;foo bar&#039;&lt;br /&gt;
%tok:nextToken is &#039;foo&#039;&lt;br /&gt;
%tok:nextToken is &#039;bar&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
==See also==&lt;br /&gt;
[[New_(StringTokenizer_constructor)]]&lt;br /&gt;
{{Template:String:StringTokenizer footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitOffString_(String_function)&amp;diff=43407</id>
		<title>BitOffString (String function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitOffString_(String_function)&amp;diff=43407"/>
		<updated>2011-04-13T00:21:16Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:String:BitOffString subtitle}}  &amp;lt;var&amp;gt;BitOffString&amp;lt;/var&amp;gt; turns off a set of bits in one string as indicated by another.   ==Syntax== {{Template:String:BitOffString synt...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:BitOffString subtitle}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;BitOffString&amp;lt;/var&amp;gt; turns off a set of bits in one string as indicated by another. &lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:BitOffString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A string to receive the result of turning off the bits in &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;offBits&amp;lt;/var&amp;gt; for &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The string to turn off bits in.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;offBits&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The bits to turn off.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;var&amp;gt;Pad&amp;lt;/var&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A single character that indicates the character with which the shorter of the two input strings is to be extended. As many copies of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; are used as is required to make the shorter string as long as the longer. If both strings are of equal length, no padding is required. The default value of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; is &amp;lt;code&amp;gt;&#039;00&#039;:x&amp;lt;/code&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Using a null &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; for &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;offBits&amp;lt;/var&amp;gt; is an easy way of turning off a specific set of bits for each byte in a string (the &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; value).&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOffString&amp;lt;/var&amp;gt; is most useful for working with binary data, for example binary data being sent or received with &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Janus Sockets]]&amp;lt;/var&amp;gt;.&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOffString&amp;lt;/var&amp;gt; was introduced in &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|&amp;quot;Sirius Mods&amp;quot;]]&amp;lt;/var&amp;gt; version 7.9.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:String:BitOffString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitOnString_(String_function)&amp;diff=43393</id>
		<title>BitOnString (String function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitOnString_(String_function)&amp;diff=43393"/>
		<updated>2011-04-13T00:21:16Z</updated>

		<summary type="html">&lt;p&gt;John: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:BitOnString subtitle}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;BitOnString&amp;lt;/var&amp;gt; sets bits in one string as indicated by another. &lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:BitOnString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A string to receive the result of setting the bits in &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;onBits&amp;lt;/var&amp;gt; for &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The string to set bits in.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;onBits&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The bits to set.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;var&amp;gt;Pad&amp;lt;/var&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A single character that indicates the character with which the shorter of the two input strings is to be extended. As many copies of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; are used as is required to make the shorter string as long as the longer. If both strings are of equal length, no padding is required. The default value of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; is &amp;lt;code&amp;gt;&#039;00&#039;:x&amp;lt;/code&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Using a null &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; for &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;onBits&amp;lt;/var&amp;gt; is an easy way of turning on a specific set of bits for each byte in a string (the &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; value).&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOnString&amp;lt;/var&amp;gt; is most useful for working with binary data, for example binary data being sent or received with &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Janus Sockets]]&amp;lt;/var&amp;gt;.&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOnString&amp;lt;/var&amp;gt; was introduced in &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|&amp;quot;Sirius Mods&amp;quot;]]&amp;lt;/var&amp;gt; version 7.9.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:String:BitOnString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitXorString_(String_function)&amp;diff=43377</id>
		<title>BitXorString (String function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitXorString_(String_function)&amp;diff=43377"/>
		<updated>2011-04-13T00:21:16Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:String:BitXorString subtitle}}  &amp;lt;var&amp;gt;BitXorString&amp;lt;/var&amp;gt; does a logical XOR of the bits in two strings.   ==Syntax== {{Template:String:BitXorString syntax}} ===Syntax t...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:BitXorString subtitle}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;BitXorString&amp;lt;/var&amp;gt; does a logical XOR of the bits in two strings. &lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:BitXorString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A string to receive the result of XORing together the bits in &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; and &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;xorBits&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;One of the strings to be XORed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;xorBits&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The other string to be XORed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;var&amp;gt;Pad&amp;lt;/var&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A single character that indicates the character with which the shorter of the two input strings is to be extended. As many copies of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; are used as is required to make the shorter string as long as the longer. If both strings are of equal length, no padding is required. The default value of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; is &amp;lt;code&amp;gt;&#039;00&#039;:x&amp;lt;/code&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Using a null &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; or &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;xorBits&amp;lt;/var&amp;gt; is an easy way of XORing each byte in a string with a specific byte value (the &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; value).&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitXorString&amp;lt;/var&amp;gt; is most useful for working with binary data, for example binary data being sent or received with &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Janus Sockets]]&amp;lt;/var&amp;gt;.&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitXorString&amp;lt;/var&amp;gt; was introduced in &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|&amp;quot;Sirius Mods&amp;quot;]]&amp;lt;/var&amp;gt; version 7.9.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:String:BitXorString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitOnString_and_BitOrString_(String_functions)&amp;diff=43357</id>
		<title>BitOnString and BitOrString (String functions)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitOnString_and_BitOrString_(String_functions)&amp;diff=43357"/>
		<updated>2011-04-13T00:21:16Z</updated>

		<summary type="html">&lt;p&gt;John: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:BitOrString subtitle}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;BitOrString&amp;lt;/var&amp;gt; does a logical OR of the bits in two strings. &lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:BitOrString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A string to receive the result of ORing together the bits in &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; and &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;orBits&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;One of the strings to be ORed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;orBits&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The other string to be ORed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;var&amp;gt;Pad&amp;lt;/var&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A single character that indicates the character with which the shorter of the two input strings is to be extended. As many copies of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; are used as is required to make the shorter string as long as the longer. If both strings are of equal length, no padding is required. The default value of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; is &amp;lt;code&amp;gt;&#039;00&#039;:x&amp;lt;/code&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Using a null &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; for &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;orBits&amp;lt;/var&amp;gt; is an easy way of ORing each byte in a string with a specific byte value (the &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; value).&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOrString&amp;lt;/var&amp;gt; is most useful for working with binary data, for example binary data being sent or received with &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Janus Sockets]]&amp;lt;/var&amp;gt;.&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOrString&amp;lt;/var&amp;gt; was introduced in &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|&amp;quot;Sirius Mods&amp;quot;]]&amp;lt;/var&amp;gt; version 7.9.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;The following example converts lower case alphabetic characters to upper case (because EBCDIC A-Z are equal to a-z plus X&#039;40&#039;):&lt;br /&gt;
&amp;lt;p class=&amp;quot;pre&amp;quot;&amp;gt;%upper = %lower:bitOrString(&#039;&#039;, pad=&#039;40&#039;:x)&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
In, the above code, if &amp;lt;code&amp;gt;%lower&amp;lt;/code&amp;gt; were &amp;lt;code&amp;gt;&#039;foobar&#039;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;%upper&amp;lt;/code&amp;gt; would be set to &amp;lt;code class=&amp;quot;output&amp;quot;&amp;gt;&#039;FOOBAR&#039;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:String:BitOrString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitShiftLeftInteger_(Float_function)&amp;diff=43561</id>
		<title>BitShiftLeftInteger (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitShiftLeftInteger_(Float_function)&amp;diff=43561"/>
		<updated>2011-03-30T12:24:22Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:Float:BitShiftLeftInteger subtitle}}  The &amp;lt;var&amp;gt;BitShiftLeftInteger&amp;lt;/var&amp;gt; intrinsic function performs a left shift on the bits of an integer.  ==S...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:BitShiftLeftInteger subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;BitShiftLeftInteger&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function performs a left shift on the bits of an integer.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:BitShiftLeftInteger syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the result of shifting the bits of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;float&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;The float to be shifted.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;shift&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;The shift length.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;BitShiftLeftInteger&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.9&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;The following statement sets %y to 4 times %x:&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;%y = %x:bitShiftLeftInteger(2)&lt;br /&gt;
&amp;lt;/p&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:BitShiftLeftInteger footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitShiftRightInteger_(Float_function)&amp;diff=43559</id>
		<title>BitShiftRightInteger (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitShiftRightInteger_(Float_function)&amp;diff=43559"/>
		<updated>2011-03-30T11:59:20Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:Float:BitShiftRightInteger subtitle}}  The &amp;lt;var&amp;gt;BitShiftRightInteger&amp;lt;/var&amp;gt; intrinsic function performs a logical right shift on the bits of an in...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:BitShiftRightInteger subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;BitShiftRightInteger&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function performs a logical right shift on the bits of an integer.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:BitShiftRightInteger syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the result of shifting the bits of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;float&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;The float to be shifted.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;shift&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;The shift length.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;BitShiftRightInteger&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.9&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:BitShiftRightInteger footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitXorInteger_(Float_function)&amp;diff=43557</id>
		<title>BitXorInteger (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitXorInteger_(Float_function)&amp;diff=43557"/>
		<updated>2011-03-30T11:35:30Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:Float:BitXorInteger subtitle}}  The &amp;lt;var&amp;gt;BitXorInteger&amp;lt;/var&amp;gt; intrinsic function performs a logical XOR on the bits of two integers.  ==Syntax== {...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:BitXorInteger subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;BitXorInteger&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function performs a logical XOR on the bits of two integers.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:BitXorInteger syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the result of XORing together the bits of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;float&amp;lt;/var&amp;gt; and &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;xorBits&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;One of the floats to be XORed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;xorBits&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;The other float to be XORed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;BitXorInteger&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.9&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:BitXorInteger footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitOnInteger_and_BitOrInteger_(Float_functions)&amp;diff=43547</id>
		<title>BitOnInteger and BitOrInteger (Float functions)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitOnInteger_and_BitOrInteger_(Float_functions)&amp;diff=43547"/>
		<updated>2011-03-30T11:32:29Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:Float:BitOrInteger subtitle}}  The &amp;lt;var&amp;gt;BitOrInteger&amp;lt;/var&amp;gt; intrinsic function performs a logical OR on the bits of two integers.  ==Syntax== {{Te...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:BitOrInteger subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;BitOrInteger&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function performs a logical OR on the bits of two integers.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:BitOrInteger syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the result of ORing together the bits of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;float&amp;lt;/var&amp;gt; and &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;orBits&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;One of the floats to be ORed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;orBits&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;The other float to be ORed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;BitOrInteger&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.9&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:BitOrInteger footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitOnInteger_(Float_function)&amp;diff=43544</id>
		<title>BitOnInteger (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitOnInteger_(Float_function)&amp;diff=43544"/>
		<updated>2011-03-30T10:40:03Z</updated>

		<summary type="html">&lt;p&gt;John: /* Syntax terms */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:BitOnInteger subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;BitOnInteger&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function turns on a set of bits in an integer as indicated by another.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:BitOnInteger syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the result of turning on the bits of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;onBits&amp;lt;/var&amp;gt; in &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;float&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;The float to turn on bits in.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;onBits&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;The bits to turn on.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;BitOnInteger&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.9&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;The following statement rounds an integer up to the nearest odd integer:&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;%y = %x:bitOnInteger(1)&lt;br /&gt;
&amp;lt;/p&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:BitOnInteger footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitOnInteger_(Float_function)&amp;diff=43543</id>
		<title>BitOnInteger (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitOnInteger_(Float_function)&amp;diff=43543"/>
		<updated>2011-03-30T10:39:38Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:Float:BitOnInteger subtitle}}  The &amp;lt;var&amp;gt;BitOnInteger&amp;lt;/var&amp;gt; intrinsic function turns on a set of bits in an integer as indicated by another.  ==Sy...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:BitOnInteger subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;BitOnInteger&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function turns on a set of bits in an integer as indicated by another.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:BitOnInteger syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the result of turning on the bits of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;onBits&amp;lt;/var&amp;gt; in &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;float&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;The float to turn on bits in.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;offBits&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;The bits to turn on.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;BitOnInteger&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.9&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;The following statement rounds an integer up to the nearest odd integer:&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;%y = %x:bitOnInteger(1)&lt;br /&gt;
&amp;lt;/p&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:BitOnInteger footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitOffInteger_(Float_function)&amp;diff=43540</id>
		<title>BitOffInteger (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitOffInteger_(Float_function)&amp;diff=43540"/>
		<updated>2011-03-30T10:35:09Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:Float:BitOffInteger subtitle}}  The &amp;lt;var&amp;gt;BitOffInteger&amp;lt;/var&amp;gt; intrinsic function turns off a set of bits in an integer as indicated by another.  =...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:BitOffInteger subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;BitOffInteger&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function turns off a set of bits in an integer as indicated by another.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:BitOffInteger syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the result of turning off the bits of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;offBits&amp;lt;/var&amp;gt; in &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;float&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;The float to turn off bits in.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;offBits&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;The bits to turn off.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;BitOffInteger&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.9&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:BitOffInteger footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitAndInteger_(Float_function)&amp;diff=43538</id>
		<title>BitAndInteger (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitAndInteger_(Float_function)&amp;diff=43538"/>
		<updated>2011-03-30T10:28:59Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:Float:BitAndInteger subtitle}}  The &amp;lt;var&amp;gt;BitAndInteger&amp;lt;/var&amp;gt; intrinsic function performs a logical AND on the bits of two integers.  ==Syntax== {...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:BitAndInteger subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;BitAndInteger&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function performs a logical AND on the bits of two integers.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:BitAndInteger syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the result of ANDing together the bits of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;float&amp;lt;/var&amp;gt; and &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;andBits&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;One of the floats to be ANDed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;andBits&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;The other float to be ANDed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;BitAndInteger&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.9&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;The following statement checks whether the least significant bit of an integer is set. It sets %y to 1 if %x is odd and 0 if %x is even:&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;%y = %x:bitAndInteger(1)&lt;br /&gt;
&amp;lt;/p&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:BitAndInteger footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=DaysToString_(Float_function)&amp;diff=43510</id>
		<title>DaysToString (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=DaysToString_(Float_function)&amp;diff=43510"/>
		<updated>2011-03-29T22:40:12Z</updated>

		<summary type="html">&lt;p&gt;John: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:DaysToString subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;DaysToString&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function operates on a &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing days since 1900 and returns a formatted string representing that date/time.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:DaysToString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%string&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the formatted [[Datetime_string_formats|date/time string]] result of the &amp;lt;var&amp;gt;DaysToString&amp;lt;/var&amp;gt; method.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing days since 1900.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;format&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A valid [[Datetime_string_formats|date/time string format]].&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;DaysToString&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.8&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
[[MillisecondsToString_(Float_function)]]&lt;br /&gt;
&lt;br /&gt;
[[SecondsToString_(Float_function)]]&lt;br /&gt;
&lt;br /&gt;
{{Template:Float:DaysToString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=DaysToString_(Float_function)&amp;diff=43509</id>
		<title>DaysToString (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=DaysToString_(Float_function)&amp;diff=43509"/>
		<updated>2011-03-29T22:40:02Z</updated>

		<summary type="html">&lt;p&gt;John: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:DaysToString subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;DaysToString&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function operates on a &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing days since 1900 and returns a formatted string representing that date/time.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:DaysToString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%string&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the formatted [[Datetime_string_formats|date/time string]] result of the &amp;lt;var&amp;gt;DaysToString&amp;lt;/var&amp;gt; method.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing days since 1900.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;format&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A valid [[Datetime_string_formats|date/time string format]].&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;DaysToString&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.8&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
[[MillisecondsToString_(Float_function)]]&lt;br /&gt;
&lt;br /&gt;
[[SecondsToString_(Float_function)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template:Float:DaysToString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=SecondsToString_(Float_function)&amp;diff=43522</id>
		<title>SecondsToString (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=SecondsToString_(Float_function)&amp;diff=43522"/>
		<updated>2011-03-29T22:39:42Z</updated>

		<summary type="html">&lt;p&gt;John: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:SecondsToString subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;SecondsToString&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function operates on a &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing seconds since 1900 and returns a formatted string representing that date/time.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:SecondsToString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%string&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the formatted [[Datetime_string_formats|date/time string]] result of the &amp;lt;var&amp;gt;SecondsToString&amp;lt;/var&amp;gt; method.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing seconds since 1900.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;format&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A valid [[Datetime_string_formats|date/time string format]].&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;SecondsToString&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.8&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[MillisecondsToString_(Float_function)]]&lt;br /&gt;
&lt;br /&gt;
[[DaysToString_(Float_function)]]&lt;br /&gt;
&lt;br /&gt;
{{Template:Float:SecondsToString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=SecondsToString_(Float_function)&amp;diff=43521</id>
		<title>SecondsToString (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=SecondsToString_(Float_function)&amp;diff=43521"/>
		<updated>2011-03-29T22:39:33Z</updated>

		<summary type="html">&lt;p&gt;John: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:SecondsToString subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;SecondsToString&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function operates on a &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing seconds since 1900 and returns a formatted string representing that date/time.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:SecondsToString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%string&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the formatted [[Datetime_string_formats|date/time string]] result of the &amp;lt;var&amp;gt;SecondsToString&amp;lt;/var&amp;gt; method.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing seconds since 1900.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;format&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A valid [[Datetime_string_formats|date/time string format]].&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;SecondsToString&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.8&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[MillisecondsToString_(Float_function)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[DaysToString_(Float_function)]]&lt;br /&gt;
&lt;br /&gt;
{{Template:Float:SecondsToString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=MillisecondsToString_(Float_function)&amp;diff=43531</id>
		<title>MillisecondsToString (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=MillisecondsToString_(Float_function)&amp;diff=43531"/>
		<updated>2011-03-29T22:39:11Z</updated>

		<summary type="html">&lt;p&gt;John: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:MillisecondsToString subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;MillisecondsToString&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function operates on a &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing milliseconds since 1900 and returns a formatted string representing that date/time.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:MillisecondsToString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%string&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the formatted [[Datetime_string_formats|date/time string]] result of the &amp;lt;var&amp;gt;MillisecondsToString&amp;lt;/var&amp;gt; method.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing milliseconds since 1900.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;format&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A valid [[Datetime_string_formats|date/time string format]].&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;MillisecondsToString&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.8&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[SecondsToString_(Float_function)]]&lt;br /&gt;
&lt;br /&gt;
[[DaysToString_(Float_function)]]&lt;br /&gt;
&lt;br /&gt;
{{Template:Float:MillisecondsToString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=MillisecondsToString_(Float_function)&amp;diff=43530</id>
		<title>MillisecondsToString (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=MillisecondsToString_(Float_function)&amp;diff=43530"/>
		<updated>2011-03-29T22:39:00Z</updated>

		<summary type="html">&lt;p&gt;John: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:MillisecondsToString subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;MillisecondsToString&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function operates on a &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing milliseconds since 1900 and returns a formatted string representing that date/time.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:MillisecondsToString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%string&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the formatted [[Datetime_string_formats|date/time string]] result of the &amp;lt;var&amp;gt;MillisecondsToString&amp;lt;/var&amp;gt; method.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing milliseconds since 1900.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;format&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A valid [[Datetime_string_formats|date/time string format]].&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;MillisecondsToString&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.8&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[SecondsToString_(Float_function)]]&lt;br /&gt;
&lt;br /&gt;
[[DaysToString_(Float_function)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template:Float:MillisecondsToString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=MillisecondsToString_(Float_function)&amp;diff=43529</id>
		<title>MillisecondsToString (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=MillisecondsToString_(Float_function)&amp;diff=43529"/>
		<updated>2011-03-29T22:38:47Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:Float:MillisecondsToString subtitle}}  The &amp;lt;var&amp;gt;MillisecondsToString&amp;lt;/var&amp;gt; intrinsic function operates on a &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing m...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:MillisecondsToString subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;MillisecondsToString&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function operates on a &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing milliseconds since 1900 and returns a formatted string representing that date/time.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:MillisecondsToString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%string&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the formatted [[Datetime_string_formats|date/time string]] result of the &amp;lt;var&amp;gt;MillisecondsToString&amp;lt;/var&amp;gt; method.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing milliseconds since 1900.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;format&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A valid [[Datetime_string_formats|date/time string format]].&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;MillisecondsToString&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.8&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[SecondsToString_(Float_function)]]&lt;br /&gt;
[[DaysToString_(Float_function)]]&lt;br /&gt;
{{Template:Float:MillisecondsToString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=SecondsToString_(Float_function)&amp;diff=43520</id>
		<title>SecondsToString (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=SecondsToString_(Float_function)&amp;diff=43520"/>
		<updated>2011-03-29T22:37:01Z</updated>

		<summary type="html">&lt;p&gt;John: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:SecondsToString subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;SecondsToString&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function operates on a &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing seconds since 1900 and returns a formatted string representing that date/time.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:SecondsToString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%string&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the formatted [[Datetime_string_formats|date/time string]] result of the &amp;lt;var&amp;gt;SecondsToString&amp;lt;/var&amp;gt; method.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing seconds since 1900.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;format&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A valid [[Datetime_string_formats|date/time string format]].&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;SecondsToString&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.8&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:SecondsToString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=DaysToString_(Float_function)&amp;diff=43508</id>
		<title>DaysToString (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=DaysToString_(Float_function)&amp;diff=43508"/>
		<updated>2011-03-29T22:36:25Z</updated>

		<summary type="html">&lt;p&gt;John: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:DaysToString subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;DaysToString&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function operates on a &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing days since 1900 and returns a formatted string representing that date/time.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:DaysToString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%string&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the formatted [[Datetime_string_formats|date/time string]] result of the &amp;lt;var&amp;gt;DaysToString&amp;lt;/var&amp;gt; method.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing days since 1900.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;format&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A valid [[Datetime_string_formats|date/time string format]].&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;DaysToString&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.8&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:DaysToString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=SecondsToString_(Float_function)&amp;diff=43519</id>
		<title>SecondsToString (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=SecondsToString_(Float_function)&amp;diff=43519"/>
		<updated>2011-03-29T22:36:07Z</updated>

		<summary type="html">&lt;p&gt;John: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:SecondsToString subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;SecondsToString&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function operates on a &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing seconds since 1900 and returns a formatted string representing that date/time.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:SecondsToString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%string&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the formatted [[Datetime_string_formats|date/time string]] result of the &amp;lt;var&amp;gt;SecondsToString&amp;lt;/var&amp;gt; method.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing seconds since 1900.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;format&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A valid [[Datetime_string_formats|date/time string]].&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;SecondsToString&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.8&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:SecondsToString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=SecondsToString_(Float_function)&amp;diff=43518</id>
		<title>SecondsToString (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=SecondsToString_(Float_function)&amp;diff=43518"/>
		<updated>2011-03-29T22:35:26Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:Float:SecondsToString subtitle}}  The &amp;lt;var&amp;gt;SecondsToString&amp;lt;/var&amp;gt; intrinsic function operates on a &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing seconds sin...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:SecondsToString subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;SecondsToString&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function operates on a &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing seconds since 1900 and returns a formatted string representing that date/time.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:SecondsToString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%string&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the formatted [[Datetime_string_formats|date/time string]] result of the &amp;lt;var&amp;gt;SecondsToString&amp;lt;/var&amp;gt; method.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing seconds since 1900.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;format&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A valid date/time string format&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;SecondsToString&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.8&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:SecondsToString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=DaysToString_(Float_function)&amp;diff=43507</id>
		<title>DaysToString (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=DaysToString_(Float_function)&amp;diff=43507"/>
		<updated>2011-03-29T22:33:25Z</updated>

		<summary type="html">&lt;p&gt;John: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:DaysToString subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;DaysToString&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function operates on a &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing days since 1900 and returns a formatted string representing that date/time.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:DaysToString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%string&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the formatted [[Datetime_string_formats|date/time string]] result of the &amp;lt;var&amp;gt;DaysToString&amp;lt;/var&amp;gt; method.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing days since 1900.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;format&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A valid date/time string format&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;DaysToString&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.8&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:DaysToString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=DaysToString_(Float_function)&amp;diff=43506</id>
		<title>DaysToString (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=DaysToString_(Float_function)&amp;diff=43506"/>
		<updated>2011-03-29T22:32:57Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:Float:DaysToString subtitle}}  The &amp;lt;var&amp;gt;DaysToString&amp;lt;/var&amp;gt; intrinsic function operates on a &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing days since 1900 a...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:DaysToString subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;DaysToString&amp;lt;/var&amp;gt; [[Intrinsic classes|intrinsic]] function operates on a &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing days since 1900 and returns a formatted string representing that date/time.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:DaysToString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%string&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A variable to receive the formatted [[Datetime_string_formats|date/time string]] result of the &amp;lt;var&amp;gt;DaysToString&amp;lt;/var&amp;gt; method.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; value representing days since 1900.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;format&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A valid date/time string format&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The &amp;lt;var&amp;gt;Absolute&amp;lt;/var&amp;gt; function is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods]]&amp;lt;/var&amp;gt; Version 7.8&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:DaysToString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=ToRadians_(Float_function)&amp;diff=43501</id>
		<title>ToRadians (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=ToRadians_(Float_function)&amp;diff=43501"/>
		<updated>2011-03-29T20:21:26Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:Float:ToRadians subtitle}}  The &amp;lt;var&amp;gt;ToRadians&amp;lt;/var&amp;gt; &amp;lt;var&amp;gt;intrinsic&amp;lt;/var&amp;gt; function converts a number represented in degrees to radians.  ==Syntax...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:ToRadians subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;ToRadians&amp;lt;/var&amp;gt; &amp;lt;var&amp;gt;[[Intrinsic classes|intrinsic]]&amp;lt;/var&amp;gt; function converts a number represented in degrees to radians.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:ToRadians syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%number&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A variable to receive the converted radians value. &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; degrees value.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;ToRadians&amp;lt;/var&amp;gt; is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|&amp;quot;Sirius Mods&amp;quot;]]&amp;lt;/var&amp;gt; Version 7.8.&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;The following displays &amp;lt;code&amp;gt;6.28318530717959&amp;lt;/code&amp;gt;:&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;[[PrintText statement|printText]] {360:toRadians}&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:ToRadians footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=ToDegrees_(Float_function)&amp;diff=43496</id>
		<title>ToDegrees (Float function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=ToDegrees_(Float_function)&amp;diff=43496"/>
		<updated>2011-03-29T20:16:01Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:Float:ToDegrees subtitle}}  The &amp;lt;var&amp;gt;ToDegrees&amp;lt;/var&amp;gt; &amp;lt;var&amp;gt;intrinsic&amp;lt;/var&amp;gt; function converts a number represented in radians to degrees.  ==Syntax...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Float:ToDegrees subtitle}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;var&amp;gt;ToDegrees&amp;lt;/var&amp;gt; &amp;lt;var&amp;gt;[[Intrinsic classes|intrinsic]]&amp;lt;/var&amp;gt; function converts a number represented in radians to degrees.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Float:ToDegrees syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%number&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A variable to receive the converted degrees value. &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;float&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;Float&amp;lt;/var&amp;gt; radians value.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;ToDegrees&amp;lt;/var&amp;gt; is available as of &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|&amp;quot;Sirius Mods&amp;quot;]]&amp;lt;/var&amp;gt; Version 7.8.&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;The following displays &amp;lt;code&amp;gt;180&amp;lt;/code&amp;gt;:&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;[[PrintText statement|printText]] {$pi:toDegrees}&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:Float:ToDegrees footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=StringToSeconds_(String_function)&amp;diff=43481</id>
		<title>StringToSeconds (String function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=StringToSeconds_(String_function)&amp;diff=43481"/>
		<updated>2011-03-29T20:00:30Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:String:StringToSeconds subtitle}}  &amp;lt;var&amp;gt;StringToSeconds&amp;lt;/var&amp;gt; is an &amp;lt;var&amp;gt;intrinsic&amp;lt;/var&amp;gt; function to convert a [[Datetime_string_formats|date/tim...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:StringToSeconds subtitle}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;StringToSeconds&amp;lt;/var&amp;gt; is an &amp;lt;var&amp;gt;[[Intrinsic classes|intrinsic]]&amp;lt;/var&amp;gt; function to convert a [[Datetime_string_formats|date/time string]] to seconds since 1900.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:StringToSeconds syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%seconds&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The float variable to receive the computed time since 1900.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The input date/time string.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;format&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The format of the date/time string.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;centspan&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;See [[CENTSPAN_parameter]].&amp;lt;/td/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[StringToMilliseconds_(String_function)]]&lt;br /&gt;
&lt;br /&gt;
[[StringToDays_(String_function)]]&lt;br /&gt;
&lt;br /&gt;
{{Template:String:StringToSeconds footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=StringToDays_(String_function)&amp;diff=43455</id>
		<title>StringToDays (String function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=StringToDays_(String_function)&amp;diff=43455"/>
		<updated>2011-03-29T19:59:20Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:String:StringToDays subtitle}}  &amp;lt;var&amp;gt;StringToDays&amp;lt;/var&amp;gt; is an &amp;lt;var&amp;gt;intrinsic&amp;lt;/var&amp;gt; function to convert a [[Datetime_string_formats|date/time stri...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:StringToDays subtitle}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;StringToDays&amp;lt;/var&amp;gt; is an &amp;lt;var&amp;gt;[[Intrinsic classes|intrinsic]]&amp;lt;/var&amp;gt; function to convert a [[Datetime_string_formats|date/time string]] to days since 1900.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:StringToDays syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%days&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The float variable to receive the computed time since 1900.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The input date/time string.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;format&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The format of the date/time string.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;centspan&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;See [[CENTSPAN_parameter]].&amp;lt;/td/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[StringToMilliseconds_(String_function)]]&lt;br /&gt;
&lt;br /&gt;
[[StringToSeconds_(String_function)]]&lt;br /&gt;
&lt;br /&gt;
{{Template:String:StringToDays footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=StringToMilliseconds_(String_function)&amp;diff=43440</id>
		<title>StringToMilliseconds (String function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=StringToMilliseconds_(String_function)&amp;diff=43440"/>
		<updated>2011-03-29T15:23:24Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:String:StringToMilliseconds subtitle}}  &amp;lt;var&amp;gt;StringToMilliseconds&amp;lt;/var&amp;gt; is an &amp;lt;var&amp;gt;intrinsic&amp;lt;/var&amp;gt; function to convert a [[Datetime_string_format...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:StringToMilliseconds subtitle}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;StringToMilliseconds&amp;lt;/var&amp;gt; is an &amp;lt;var&amp;gt;[[Intrinsic classes|intrinsic]]&amp;lt;/var&amp;gt; function to convert a [[Datetime_string_formats|date/time string]] to milliseconds since 1900.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:StringToMilliseconds syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%milliseconds&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The float variable to receive the computed time since 1900.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The input date/time string.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;format&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The format of the date/time string.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;centspan&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;See [[CENTSPAN_parameter]].&amp;lt;/td/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[StringToSeconds_(String_function)]]&lt;br /&gt;
&lt;br /&gt;
[[StringToDays_(String_function)]]&lt;br /&gt;
&lt;br /&gt;
{{Template:String:StringToMilliseconds footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=StringTokenizer_(String_function)&amp;diff=43416</id>
		<title>StringTokenizer (String function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=StringTokenizer_(String_function)&amp;diff=43416"/>
		<updated>2011-03-29T14:13:39Z</updated>

		<summary type="html">&lt;p&gt;John: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:StringTokenizer subtitle}}&lt;br /&gt;
&lt;br /&gt;
This method returns a new instance of a &amp;lt;var&amp;gt;StringTokenizer&amp;lt;/var&amp;gt; object using the method string as the tokenizer string.&lt;br /&gt;
It has three optional arguments that let you specify the delimiter characters&lt;br /&gt;
that determine the tokens in the string that is being tokenized.&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:StringTokenizer syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%stringTokenizer&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;StringTokenizer&amp;lt;/var&amp;gt; object expression to contain the new object instance. &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The string to be tokenized.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;TokenChars&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;This name required string argument &amp;lt;var&amp;gt;TokenChars&amp;lt;/var&amp;gt; is a set of single-character token-delimiters (delimiters that are also tokens) that may be separated by whitespace characters.&lt;br /&gt;
&amp;lt;var&amp;gt;TokenChars&amp;lt;/var&amp;gt; is an optional argument that defaults to a null string. &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Spaces&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;This name required string argument &amp;lt;var&amp;gt;Spaces&amp;lt;/var&amp;gt; is a set of &amp;quot;whitespace&amp;quot; characters, that is, characters that separate tokens. Each of these characters is a &amp;quot;non-token delimiter,&amp;quot; a delimiter that is not itself a token.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;Spaces&amp;lt;/var&amp;gt; is an optional argument that defaults to a blank character. &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Quotes&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;This name required string argument &amp;lt;var&amp;gt;Quotes&amp;lt;/var&amp;gt; is a set of quotation characters. The text between each disjoint pair of identical quotation characters (a &amp;quot;quoted region&amp;quot;) is treated as a single token, and any delimiter characters (Quote, Space, or TokenChar) within a quoted region are treated as non-delimiters.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;Quotes&amp;lt;/var&amp;gt; is an optional argument that defaults to a null string.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;A character may belong to at most one of the Spaces,&lt;br /&gt;
Quotes, or TokenChars sets of characters.&lt;br /&gt;
&amp;lt;li&amp;gt;If you are specifying Spaces, Quotes, or TokenChars,&lt;br /&gt;
each character in the string is a quotation&lt;br /&gt;
character &amp;amp;mdash; that is, you may not separate characters &amp;amp;mdash; and no character&lt;br /&gt;
may repeat (except for apostrophe, which may be doubled).&lt;br /&gt;
&amp;lt;li&amp;gt;A quoted region is not affected by the [[TokensToLower (StringTokenizer property)|TokensToLower]]&lt;br /&gt;
and [[TokensToUpper (StringTokenizer property)|TokensToUpper]] properties.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;begin&lt;br /&gt;
%tok is object stringtokenizer&lt;br /&gt;
&lt;br /&gt;
%tok = &#039;foo bar&#039;:stringTokenizer&lt;br /&gt;
&lt;br /&gt;
printText {~} is &#039;{%tok:string}&#039;&lt;br /&gt;
&lt;br /&gt;
repeat while not %tok:atEnd&lt;br /&gt;
   printText {~} is &#039;{%tok:nextToken}&#039;&lt;br /&gt;
end repeat&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The result is:&lt;br /&gt;
&amp;lt;p class=&amp;quot;output&amp;quot;&amp;gt;%tok:string is &#039;foo bar&#039;&lt;br /&gt;
%tok:nextToken is &#039;foo&#039;&lt;br /&gt;
%tok:nextToken is &#039;bar&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
==See also==&lt;br /&gt;
[[New_(StringTokenizer_constructor)]]&lt;br /&gt;
{{Template:String:StringTokenizer footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=StringTokenizer_(String_function)&amp;diff=43415</id>
		<title>StringTokenizer (String function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=StringTokenizer_(String_function)&amp;diff=43415"/>
		<updated>2011-03-29T14:07:16Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:String:StringTokenizer subtitle}}  This method returns a new instance of a &amp;lt;var&amp;gt;StringTokenizer&amp;lt;/var&amp;gt; object using the method string as the tokenizer string. It has th...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:StringTokenizer subtitle}}&lt;br /&gt;
&lt;br /&gt;
This method returns a new instance of a &amp;lt;var&amp;gt;StringTokenizer&amp;lt;/var&amp;gt; object using the method string as the tokenizer string.&lt;br /&gt;
It has three optional arguments that let you specify the delimiter characters&lt;br /&gt;
that determine the tokens in the string that is being tokenized.&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:StringTokenizer syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%stringTokenizer&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A &amp;lt;var&amp;gt;StringTokenizer&amp;lt;/var&amp;gt; object expression to contain the new object instance. &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The string to be tokenized.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;TokenChars&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;This name required string argument &amp;lt;var&amp;gt;TokenChars&amp;lt;/var&amp;gt; is a set of single-character token-delimiters (delimiters that are also tokens) that may be separated by whitespace characters.&lt;br /&gt;
&amp;lt;var&amp;gt;TokenChars&amp;lt;/var&amp;gt; is an optional argument that defaults to a null string. &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Spaces&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;This name required string argument &amp;lt;var&amp;gt;Spaces&amp;lt;/var&amp;gt; is a set of &amp;quot;whitespace&amp;quot; characters, that is, characters that separate tokens. Each of these characters is a &amp;quot;non-token delimiter,&amp;quot; a delimiter that is not itself a token.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;Spaces&amp;lt;/var&amp;gt; is an optional argument that defaults to a blank character. &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Quotes&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;This name required string argument &amp;lt;var&amp;gt;Quotes&amp;lt;/var&amp;gt; is a set of quotation characters. The text between each disjoint pair of identical quotation characters (a &amp;quot;quoted region&amp;quot;) is treated as a single token, and any delimiter characters (Quote, Space, or TokenChar) within a quoted region are treated as non-delimiters.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;Quotes&amp;lt;/var&amp;gt; is an optional argument that defaults to a null string.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;A character may belong to at most one of the Spaces,&lt;br /&gt;
Quotes, or TokenChars sets of characters.&lt;br /&gt;
&amp;lt;li&amp;gt;If you are specifying Spaces, Quotes, or TokenChars,&lt;br /&gt;
each character in the string is a quotation&lt;br /&gt;
character &amp;amp;mdash; that is, you may not separate characters &amp;amp;mdash; and no character&lt;br /&gt;
may repeat (except for apostrophe, which may be doubled).&lt;br /&gt;
&amp;lt;li&amp;gt;A quoted region is not affected by the [[TokensToLower (StringTokenizer property)|TokensToLower]]&lt;br /&gt;
and [[TokensToUpper (StringTokenizer property)|TokensToUpper]] properties.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;begin&lt;br /&gt;
%tok is object stringtokenizer&lt;br /&gt;
&lt;br /&gt;
%tok = &#039;foo bar&#039;:stringTokenizer&lt;br /&gt;
&lt;br /&gt;
printText {~} is &#039;{%tok:string}&#039;&lt;br /&gt;
&lt;br /&gt;
repeat while not %tok:atEnd&lt;br /&gt;
   printText {~} is &#039;{%tok:nextToken}&#039;&lt;br /&gt;
end repeat&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The result is:&lt;br /&gt;
&amp;lt;p class=&amp;quot;output&amp;quot;&amp;gt;%tok:string is &#039;foo bar&#039;&lt;br /&gt;
%tok:nextToken is &#039;foo&#039;&lt;br /&gt;
%tok:nextToken is &#039;bar&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:String:StringTokenizer footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitOffString_(String_function)&amp;diff=43406</id>
		<title>BitOffString (String function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitOffString_(String_function)&amp;diff=43406"/>
		<updated>2011-03-29T03:35:58Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:String:BitOffString subtitle}}  &amp;lt;var&amp;gt;BitOffString&amp;lt;/var&amp;gt; turns off a set of bits in one string as indicated by another.   ==Syntax== {{Template:String:BitOffString synt...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:BitOffString subtitle}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;BitOffString&amp;lt;/var&amp;gt; turns off a set of bits in one string as indicated by another. &lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:BitOffString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A string to receive the result of turning off the bits in &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;offBits&amp;lt;/var&amp;gt; for &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The string to turn off bits in.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;offBits&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The bits to turn off.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Pad&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A single character that indicates the character with which the shorter of the two input strings is to be extended. As many copies of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; are used as is required to make the shorter string as long as the longer. If both strings are of equal length, no padding is required. The default value of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; is &amp;lt;code&amp;gt;&#039;00&#039;:x&amp;lt;/code&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Using a null &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; for &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;offBits&amp;lt;/var&amp;gt; is an easy way of turning off a specific set of bits for each byte in a string (the &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; value).&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOffString&amp;lt;/var&amp;gt; is most useful for working with binary data, for example binary data being sent or received with &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Janus Sockets]]&amp;lt;/var&amp;gt;.&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOffString&amp;lt;/var&amp;gt; was introduced in &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|&amp;quot;Sirius Mods&amp;quot;]]&amp;lt;/var&amp;gt; version 7.9.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:String:BitOffString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitOnString_and_BitOrString_(String_functions)&amp;diff=43356</id>
		<title>BitOnString and BitOrString (String functions)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitOnString_and_BitOrString_(String_functions)&amp;diff=43356"/>
		<updated>2011-03-29T03:32:49Z</updated>

		<summary type="html">&lt;p&gt;John: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:BitOrString subtitle}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;BitOrString&amp;lt;/var&amp;gt; does a logical OR of the bits in two strings. &lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:BitOrString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A string to receive the result of ORing together the bits in &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; and &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;orBits&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;One of the strings to be ORed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;orBits&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The other string to be ORed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Pad&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A single character that indicates the character with which the shorter of the two input strings is to be extended. As many copies of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; are used as is required to make the shorter string as long as the longer. If both strings are of equal length, no padding is required. The default value of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; is &amp;lt;code&amp;gt;&#039;00&#039;:x&amp;lt;/code&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Using a null &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; for &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;orBits&amp;lt;/var&amp;gt; is an easy way of ORing each byte in a string with a specific byte value (the &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; value).&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOrString&amp;lt;/var&amp;gt; is most useful for working with binary data, for example binary data being sent or received with &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Janus Sockets]]&amp;lt;/var&amp;gt;.&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOrString&amp;lt;/var&amp;gt; was introduced in &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|&amp;quot;Sirius Mods&amp;quot;]]&amp;lt;/var&amp;gt; version 7.9.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;The following example converts lower case alphabetic characters to upper case (because EBCDIC A-Z are equal to a-z plus X&#039;40&#039;):&lt;br /&gt;
&amp;lt;p class=&amp;quot;pre&amp;quot;&amp;gt;%upper = %lower:bitOrString(&#039;&#039;, pad=&#039;40&#039;:x)&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
In, the above code, if &amp;lt;code&amp;gt;%lower&amp;lt;/code&amp;gt; were &amp;lt;code&amp;gt;&#039;foobar&#039;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;%upper&amp;lt;/code&amp;gt; would be set to &amp;lt;code class=&amp;quot;output&amp;quot;&amp;gt;&#039;FOOBAR&#039;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:String:BitOrString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitOnString_(String_function)&amp;diff=43392</id>
		<title>BitOnString (String function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitOnString_(String_function)&amp;diff=43392"/>
		<updated>2011-03-29T03:32:40Z</updated>

		<summary type="html">&lt;p&gt;John: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:BitOnString subtitle}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;BitOnString&amp;lt;/var&amp;gt; sets bits in one string as indicated by another. &lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:BitOnString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A string to receive the result of setting the bits in &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;onBits&amp;lt;/var&amp;gt; for &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The string to set bits in.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;onBits&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The bits to set.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Pad&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A single character that indicates the character with which the shorter of the two input strings is to be extended. As many copies of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; are used as is required to make the shorter string as long as the longer. If both strings are of equal length, no padding is required. The default value of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; is &amp;lt;code&amp;gt;&#039;00&#039;:x&amp;lt;/code&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Using a null &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; for &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;onBits&amp;lt;/var&amp;gt; is an easy way of turning on a specific set of bits for each byte in a string (the &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; value).&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOnString&amp;lt;/var&amp;gt; is most useful for working with binary data, for example binary data being sent or received with &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Janus Sockets]]&amp;lt;/var&amp;gt;.&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOnString&amp;lt;/var&amp;gt; was introduced in &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|&amp;quot;Sirius Mods&amp;quot;]]&amp;lt;/var&amp;gt; version 7.9.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:String:BitOnString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitAndString_(String_function)&amp;diff=26364</id>
		<title>BitAndString (String function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitAndString_(String_function)&amp;diff=26364"/>
		<updated>2011-03-29T03:32:19Z</updated>

		<summary type="html">&lt;p&gt;John: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:BitAndString subtitle}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;BitAndString&amp;lt;/var&amp;gt; does a logical AND of the bits in two strings. &lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:BitAndString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A string to receive the result of ANDing together the bits in &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; and &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;andBits&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;One of the strings to be ANDed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;andBits&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The other string to be ANDed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Pad&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A single character that indicates the character with which the shorter of the two input strings is to be extended. As many copies of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; are used as is required to make the shorter string as long as the longer. If both strings are of equal length, no padding is required. The default value of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; is &amp;lt;code&amp;gt;&#039;00&#039;:x&amp;lt;/code&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Using a null &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; for &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;andBits&amp;lt;/var&amp;gt; is an easy way of ANDing each byte in a string with a specific byte value (the &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; value).&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitAndString&amp;lt;/var&amp;gt; is most useful for working with binary data, for example binary data being sent or received with &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Janus Sockets]]&amp;lt;/var&amp;gt;.&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitAndString&amp;lt;/var&amp;gt; was introduced in &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|&amp;quot;Sirius Mods&amp;quot;]]&amp;lt;/var&amp;gt; version 7.9.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;The following example turns off the low order bit of a numeric value&#039;s string representation, rounding every digit down to an even number (because EBCDIC binary digits map 0-9 to hex values X&#039;F0&#039;-X&#039;F9&#039;):&lt;br /&gt;
&amp;lt;p class=&amp;quot;pre&amp;quot;&amp;gt;%evenDigits = %digits:bitAndString(&#039;&#039;, pad=&#039;FE&#039;:x)&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
In, the above code, if &amp;lt;code&amp;gt;%digits&amp;lt;/code&amp;gt; were &amp;lt;code&amp;gt;&#039;31415926&#039;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;%evenDigits&amp;lt;/code&amp;gt; would be set to &amp;lt;code class=&amp;quot;output&amp;quot;&amp;gt;&#039;20404826&#039;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;The following example:&lt;br /&gt;
&amp;lt;p class=&amp;quot;pre&amp;quot;&amp;gt;[[PrintText statement|printText]] {~=&#039;Red&#039;:bitAndString(&#039;Green&#039;, pad=&#039;FF&#039;:x)}&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
outputs&lt;br /&gt;
&amp;lt;p class=&amp;quot;output&amp;quot;&amp;gt;&#039;Red&#039;:bitAndString(&#039;Green&#039;, pad=&#039;FF&#039;:x)=Aaden&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
To see why this is correct run the following:&lt;br /&gt;
&amp;lt;p class=&amp;quot;pre&amp;quot;&amp;gt;printText {~=&#039;Red&#039;:stringToHex}&lt;br /&gt;
printText {~=&#039;Green&#039;:stringToHex}&lt;br /&gt;
printText {~=&#039;Red&#039;:bitAndString(&#039;Green&#039;, pad=&#039;FF&#039;:x):stringToHex}&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
which outputs&lt;br /&gt;
&amp;lt;p class=&amp;quot;output&amp;quot;&amp;gt;&#039;Red&#039;:stringToHex=D98584&lt;br /&gt;
&#039;Green&#039;:stringToHex=C799858595&lt;br /&gt;
&#039;Red&#039;:bitAndString(&#039;Green&#039;, pad=&#039;FF&#039;:x):stringToHex=C181848595&lt;br /&gt;
&amp;lt;/p&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:String:BitAndString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitOnString_(String_function)&amp;diff=43391</id>
		<title>BitOnString (String function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitOnString_(String_function)&amp;diff=43391"/>
		<updated>2011-03-29T03:31:38Z</updated>

		<summary type="html">&lt;p&gt;John: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:BitOnString subtitle}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;BitOnString&amp;lt;/var&amp;gt; sets bits in one string as indicated by another. &lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:BitOnString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A string to receive the result of setting the bits in &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;onBits&amp;lt;/var&amp;gt; for &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The string to set bits in.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;onBits&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The bits to set.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Pad&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A single character that indicates the character with which the shorter of the two input strings is to be extended. As many copies of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; are used as is required to make the shorter string as long as the longer. If both strings are of equal length, no padding is required. The default value of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; is &amp;lt;code&amp;gt;&#039;00&#039;:x&amp;lt;/code&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Using a null &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; or &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;onBits&amp;lt;/var&amp;gt; is an easy way of turning on a specific set of bits for each byte in a string (the &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; value).&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOnString&amp;lt;/var&amp;gt; is most useful for working with binary data, for example binary data being sent or received with &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Janus Sockets]]&amp;lt;/var&amp;gt;.&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOnString&amp;lt;/var&amp;gt; was introduced in &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|&amp;quot;Sirius Mods&amp;quot;]]&amp;lt;/var&amp;gt; version 7.9.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:String:BitOnString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitOnString_(String_function)&amp;diff=43390</id>
		<title>BitOnString (String function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitOnString_(String_function)&amp;diff=43390"/>
		<updated>2011-03-29T03:30:54Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:String:BitOnString subtitle}}  &amp;lt;var&amp;gt;BitOnString&amp;lt;/var&amp;gt; sets bits in one string as indicated by another.   ==Syntax== {{Template:String:BitOnString syntax}} ===Syntax te...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:BitOnString subtitle}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;BitOnString&amp;lt;/var&amp;gt; sets bits in one string as indicated by another. &lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:BitOnString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A string to receive the result of setting the bits in &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;onBits&amp;lt;/var&amp;gt; for &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The string to set bits in.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;onBits&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The bits to set.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Pad&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A single character that indicates the character with which the shorter of the two input strings is to be extended. As many copies of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; are used as is required to make the shorter string as long as the longer. If both strings are of equal length, no padding is required. The default value of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; is &amp;lt;code&amp;gt;&#039;00&#039;:x&amp;lt;/code&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Using a null &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; or &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;orBits&amp;lt;/var&amp;gt; is an easy way of turning on a specific set of bits for each byte in a string (the &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; value).&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOnString&amp;lt;/var&amp;gt; is most useful for working with binary data, for example binary data being sent or received with &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Janus Sockets]]&amp;lt;/var&amp;gt;.&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOnString&amp;lt;/var&amp;gt; was introduced in &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|&amp;quot;Sirius Mods&amp;quot;]]&amp;lt;/var&amp;gt; version 7.9.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:String:BitOnString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitXorString_(String_function)&amp;diff=43376</id>
		<title>BitXorString (String function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitXorString_(String_function)&amp;diff=43376"/>
		<updated>2011-03-28T21:39:45Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:String:BitXorString subtitle}}  &amp;lt;var&amp;gt;BitXorString&amp;lt;/var&amp;gt; does a logical XOR of the bits in two strings.   ==Syntax== {{Template:String:BitXorString syntax}} ===Syntax t...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:BitXorString subtitle}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;BitXorString&amp;lt;/var&amp;gt; does a logical XOR of the bits in two strings. &lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:BitXorString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A string to receive the result of XORing together the bits in &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; and &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;xorBits&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;One of the strings to be XORed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;xorBits&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The other string to be XORed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Pad&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A single character that indicates the character with which the shorter of the two input strings is to be extended. As many copies of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; are used as is required to make the shorter string as long as the longer. If both strings are of equal length, no padding is required. The default value of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; is &amp;lt;code&amp;gt;&#039;00&#039;:x&amp;lt;/code&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Using a null &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; or &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;xorBits&amp;lt;/var&amp;gt; is an easy way of XORing each byte in a string with a specific byte value (the &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; value).&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitXorString&amp;lt;/var&amp;gt; is most useful for working with binary data, for example binary data being sent or received with &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Janus Sockets]]&amp;lt;/var&amp;gt;.&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitXorString&amp;lt;/var&amp;gt; was introduced in &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|&amp;quot;Sirius Mods&amp;quot;]]&amp;lt;/var&amp;gt; version 7.9.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:String:BitXorString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=BitOnString_and_BitOrString_(String_functions)&amp;diff=43355</id>
		<title>BitOnString and BitOrString (String functions)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=BitOnString_and_BitOrString_(String_functions)&amp;diff=43355"/>
		<updated>2011-03-28T21:12:08Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;{{Template:String:BitOrString subtitle}}  &amp;lt;var&amp;gt;BitOrString&amp;lt;/var&amp;gt; does a logical OR of the bits in two strings.   ==Syntax== {{Template:String:BitOrString syntax}} ===Syntax terms...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:String:BitOrString subtitle}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;var&amp;gt;BitOrString&amp;lt;/var&amp;gt; does a logical OR of the bits in two strings. &lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:String:BitOrString syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;table class=&amp;quot;syntaxTable&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%result&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;A string to receive the result of ORing together the bits in &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; and &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;orBits&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;string&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;One of the strings to be ORed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;orBits&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The other string to be ORed.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Pad&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A single character that indicates the character with which the shorter of the two input strings is to be extended. As many copies of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; are used as is required to make the shorter string as long as the longer. If both strings are of equal length, no padding is required. The default value of &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; is &amp;lt;code&amp;gt;&#039;00&#039;:x&amp;lt;/code&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Using a null &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;string&amp;lt;/var&amp;gt; or &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;orBits&amp;lt;/var&amp;gt; is an easy way of ORing each byte in a string with a specific byte value (the &amp;lt;var class=&amp;quot;term&amp;quot;&amp;gt;pad&amp;lt;/var&amp;gt; value).&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOrString&amp;lt;/var&amp;gt; is most useful for working with binary data, for example binary data being sent or received with &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Janus Sockets]]&amp;lt;/var&amp;gt;.&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;var&amp;gt;BitOrString&amp;lt;/var&amp;gt; was introduced in &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;[[Sirius Mods|&amp;quot;Sirius Mods&amp;quot;]]&amp;lt;/var&amp;gt; version 7.9.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;The following example converts lower case alphabetic characters to upper case (because EBCDIC A-Z are equal to a-z plus X&#039;40&#039;):&lt;br /&gt;
&amp;lt;p class=&amp;quot;pre&amp;quot;&amp;gt;%upper = %lower:bitOrString(&#039;&#039;, pad=&#039;40&#039;:x)&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
In, the above code, if &amp;lt;code&amp;gt;%lower&amp;lt;/code&amp;gt; were &amp;lt;code&amp;gt;&#039;foobar&#039;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;%upper&amp;lt;/code&amp;gt; would be set to &amp;lt;code class=&amp;quot;output&amp;quot;&amp;gt;&#039;FOOBAR&#039;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Template:String:BitOrString footer}}&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=MediaWiki:Googlesearchheader&amp;diff=43352</id>
		<title>MediaWiki:Googlesearchheader</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=MediaWiki:Googlesearchheader&amp;diff=43352"/>
		<updated>2011-03-27T16:38:06Z</updated>

		<summary type="html">&lt;p&gt;John: Created page with &amp;quot;== Google Search ==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Google Search ==&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=Pop_(Arraylist_function)&amp;diff=14723</id>
		<title>Pop (Arraylist function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=Pop_(Arraylist_function)&amp;diff=14723"/>
		<updated>2011-01-19T23:27:39Z</updated>

		<summary type="html">&lt;p&gt;John: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Arraylist:Pop subtitle}}&lt;br /&gt;
[[Category:Arraylist methods|Pop function]]&lt;br /&gt;
&amp;lt;!--DPL?? Category:Arraylist methods|Pop function: Retrieve last Arraylist item, then remove item--&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Pop is a member of the [[Arraylist class]].&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This callable function returns the current contents of the last item&lt;br /&gt;
in the method object Arraylist; then it removes that item.&lt;br /&gt;
&lt;br /&gt;
Pop is available in &#039;&#039;Sirius Mods&#039;&#039; version 7.0 and later.&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Arraylist:Pop syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;i&amp;gt;%item&amp;lt;/i&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;A variable of the same&lt;br /&gt;
type as specified on the &#039;&#039;%arrayl&#039;&#039; declaration&lt;br /&gt;
to contain the contents of the last &#039;&#039;%arrayl&#039;&#039; item.&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;i&amp;gt;%arrayl&amp;lt;/i&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;An Arraylist object.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;The Pop method for object %arrayl is equivalent to&lt;br /&gt;
specifying &amp;lt;tt&amp;gt;%arrayl:[[Item (Arraylist property)|Item]](%arrayl:Count)&amp;lt;/tt&amp;gt;&lt;br /&gt;
followed by &amp;lt;tt&amp;gt;%arrayl:[[RemoveItem (Arraylist function)|RemoveItem]](%arrayl:Count)&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&amp;lt;li&amp;gt;[[LastItem (Arraylist property)|LastItem]]&lt;br /&gt;
returns the last item of an Arraylist without removing it.&lt;br /&gt;
[[Dequeue (Arraylist function)|Dequeue]]&lt;br /&gt;
returns the first item of an Arraylist, then removes it.&lt;br /&gt;
&amp;lt;li&amp;gt;The [[Push (Arraylist function)|Push]] function, a synonym for Add,&lt;br /&gt;
appends an item to an Arraylist.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=Dequeue_(Arraylist_function)&amp;diff=14215</id>
		<title>Dequeue (Arraylist function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=Dequeue_(Arraylist_function)&amp;diff=14215"/>
		<updated>2011-01-19T23:27:39Z</updated>

		<summary type="html">&lt;p&gt;John: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Arraylist:Dequeue subtitle}}&lt;br /&gt;
[[Category:Arraylist methods|Dequeue function]]&lt;br /&gt;
&amp;lt;!--DPL?? Category:Arraylist methods|Dequeue function: Retrieve first Arraylist item, then remove item--&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Dequeue is a member of the [[Arraylist class]].&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This callable function returns the current contents of the first item&lt;br /&gt;
in the method object Arraylist; then it removes that item.&lt;br /&gt;
&lt;br /&gt;
Dequeue is available in &#039;&#039;Sirius Mods&#039;&#039; version 7.0 and later.&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Arraylist:Dequeue syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;i&amp;gt;%item&amp;lt;/i&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;A variable of the same&lt;br /&gt;
type as specified on the &#039;&#039;%arrayl&#039;&#039; declaration&lt;br /&gt;
to contain the contents of the first &#039;&#039;%arrayl&#039;&#039; item.&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;i&amp;gt;%arrayl&amp;lt;/i&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;An Arraylist object.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;The Dequeue method for object %arrayl is equivalent to&lt;br /&gt;
specifying &amp;lt;tt&amp;gt;%arrayl:[[Item (Arraylist property)|Item]](1)&amp;lt;/tt&amp;gt;&lt;br /&gt;
followed by &amp;lt;tt&amp;gt;%arrayl:[[RemoveItem (Arraylist function)|RemoveItem]](1)&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&amp;lt;li&amp;gt;The [[FirstItem (Arraylist property)|FirstItem]] property&lt;br /&gt;
returns the first item of an Arraylist without removing it.&lt;br /&gt;
The [[Pop (Arraylist function)|Pop]] function&lt;br /&gt;
returns the last item of an Arraylist, then removes it.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=Pop_(Stringlist_function)&amp;diff=8725</id>
		<title>Pop (Stringlist function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=Pop_(Stringlist_function)&amp;diff=8725"/>
		<updated>2011-01-04T22:04:24Z</updated>

		<summary type="html">&lt;p&gt;John: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Stringlist:Pop subtitle}}&lt;br /&gt;
&lt;br /&gt;
This callable method returns the current contents of the last item in the method object Stringlist, then it removes that last item. Pop is available in &#039;&#039;[[Sirius Mods]]&#039;&#039; version 7.0 and later.&lt;br /&gt;
&lt;br /&gt;
Pop is a member of the [[Stringlist class]].&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Stringlist:Pop syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;%string&lt;br /&gt;
&amp;lt;dd&amp;gt;This longstring is to contain the contents of the last item in &#039;&#039;&#039;%sl&#039;&#039;&#039;.&lt;br /&gt;
&amp;lt;dt&amp;gt;%sl&lt;br /&gt;
&amp;lt;dd&amp;gt;A Stringlist object. &lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;All errors in Pop result in request cancellation.&lt;br /&gt;
&amp;lt;li&amp;gt;The [[LastItem (Stringlist function)]] returns the last item of a Stringlist without removing it. The [[Push (Stringlist function)]], a synonym for the [[Add (Stringlist function)]], appends a string to a Stringlist.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Stringlist methods|Pop function]]&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=Dequeue_(Stringlist_function)&amp;diff=7913</id>
		<title>Dequeue (Stringlist function)</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=Dequeue_(Stringlist_function)&amp;diff=7913"/>
		<updated>2011-01-04T22:03:59Z</updated>

		<summary type="html">&lt;p&gt;John: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Stringlist:Dequeue subtitle}}&lt;br /&gt;
&lt;br /&gt;
This callable method returns the current contents of the first item in the method object Stringlist, then it removes that first item. Dequeue is available in &#039;&#039;[[Sirius Mods]]&#039;&#039; version 7.0 and later.&lt;br /&gt;
&lt;br /&gt;
Dequeue is a member of the [[Stringlist class]].&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
{{Template:Stringlist:Dequeue syntax}}&lt;br /&gt;
===Syntax terms===&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;%string&lt;br /&gt;
&amp;lt;dd&amp;gt;This longstring is to contain the contents of the first item in &#039;&#039;&#039;%sl&#039;&#039;&#039;.&lt;br /&gt;
&amp;lt;dt&amp;gt;%sl&lt;br /&gt;
&amp;lt;dd&amp;gt;A Stringlist object. &lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Usage notes==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;All errors in Dequeue result in request cancellation.&lt;br /&gt;
&amp;lt;li&amp;gt;The [[FirstItem (Stringlist function)]] returns the first item of a Stringlist without removing it. The [[Pop (Stringlist function)]] returns the last item of a Stringlist, then removes it.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Stringlist methods|Dequeue function]]&lt;/div&gt;</summary>
		<author><name>John</name></author>
	</entry>
</feed>