$SubIns: Difference between revisions
(Automatically generated page update) |
m (→Syntax) |
||
Line 19: | Line 19: | ||
<p> | <p> | ||
</p> | </p> | ||
<p>%STRING is a string made up of | <p>%STRING is a string made up of ''string'' and ''ins_string''.</p> | ||
If no insertion position is provided, the insertion string is appended to the end of the first input string. If the insertion point is past the first input string, the first input string is left unmodified. | If no insertion position is provided, the insertion string is appended to the end of the first input string. If the insertion point is past the first input string, the first input string is left unmodified. |
Revision as of 02:12, 16 April 2013
Insert string inside another string
Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $SubIns function is the Insert (String function).
This function inserts a string inside another.
The $SubIns function accepts three arguments and returns a string result.
The first argument is an arbitrary string.
The second argument is another arbitrary string.
The third argument is an insertion position in the first argument string.
Syntax
%STRING = $SubIns(string, ins_string, insert_pos)
%STRING is a string made up of string and ins_string.
If no insertion position is provided, the insertion string is appended to the end of the first input string. If the insertion point is past the first input string, the first input string is left unmodified.
For example, this statement sets %JUNK to PAT STAMPER, TRADER HORSE:
%JUNK = $SubIns('PAT STAMPER, TRADER', ' HORSE')
This statement sets %JUNK to PAT STAMPER, HORSE TRADER:
%JUNK = $SubIns('PAT STAMPER, TRADER', ' HORSE', 12)
This statement sets %JUNK to PAT STAMPER, TRADER:
%JUNK = $SubIns('PAT STAMPER, TRADER', ' HORSE', 92)
Products authorizing $SubIns
- Sirius functions
- Fast/Unload User Language Interface
- Janus Open Client
- Janus Open Server
- Janus Sockets
- Janus Web Server
- Japanese functions
- Sir2000 Field Migration Facility