Programmer Guide/Command Reference/STRCHR: Difference between revisions
From STX Wiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:{{SUBPAGENAME}}}} | {{DISPLAYTITLE:{{SUBPAGENAME}}}} | ||
<var>var</var> := STRCHR [ /Reverse ] [ [[Programmer_Guide/Command_Reference_Options/Silent|/Silent]] | <var>var</var> := STRCHR [ /Reverse ] [ [[Programmer_Guide/Command_Reference_Options/Silent|/Silent]] ] /- <var>needle</var> <var>haystackstring</var> | ||
<var>var</var> := STRCHR [ /Reverse ] [ [[Programmer_Guide/Command_Reference_Options/Silent|/Silent]]] / | <var>var</var> := STRCHR [ /Reverse ] [ [[Programmer_Guide/Command_Reference_Options/Silent|/Silent]]] /Variable /- <var>needle</var> <var>haystackvariable</var> | ||
Locates the first occurrence of the character <var>character</var>, or one of the characters in <var>characters</var> in the string <var> | Locates the first occurrence of the character <var>character</var>, or one of the characters in <var>characters</var> in the string <var>haystackstring</var> or, if <code>/Variable</code> is supplied, in the variable <var>haystackvariable</var>. and returns the index of the first occurrence, or -1, if no occurrence is found. | ||
;<code>/Reverse</code> | ;<code>/Reverse</code> | ||
:If option <code>/Reverse</code> is supplied, the | :If option <code>/Reverse</code> is supplied, the haystack will be searched from right to left; otherwise, it will be searched from left to right. | ||
;<code>[[Programmer_Guide/Command_Reference_Options/Silent|/Silent]]</code> | ;<code>[[Programmer_Guide/Command_Reference_Options/Silent|/Silent]]</code> | ||
:If option <code>[[Programmer_Guide/Command_Reference_Options/Silent|/Silent]]</code> is set, warnings instead of errors will be generated on failure | :If option <code>[[Programmer_Guide/Command_Reference_Options/Silent|/Silent]]</code> is set, warnings instead of errors will be generated on failure | ||
;< | ;<code>/Variable</code> | ||
: | :This option tells {{STX}} that the haystack argument is the name of a variable whose contents are to be searched. When omitting <code>/Variable</code>, the haystack argument will be considered a string literal to search. | ||
;<var> | ;<var>needle</var> | ||
:A single character to search for. | :A string of characters, or a single character, to search for. | ||
;<var>variable</var> | ;<var>variable</var> | ||
:Find the first semi-colon in the string stored in the variable <var>variable</var>. | :Find the first semi-colon in the string stored in the variable <var>variable</var>. |
Revision as of 17:46, 29 April 2014
var := STRCHR [ /Reverse ] [ /Silent ] /- needle haystackstring var := STRCHR [ /Reverse ] [ /Silent] /Variable /- needle haystackvariable
Locates the first occurrence of the character character, or one of the characters in characters in the string haystackstring or, if /Variable
is supplied, in the variable haystackvariable. and returns the index of the first occurrence, or -1, if no occurrence is found.
/Reverse
- If option
/Reverse
is supplied, the haystack will be searched from right to left; otherwise, it will be searched from left to right. /Silent
- If option
/Silent
is set, warnings instead of errors will be generated on failure /Variable
- This option tells STx that the haystack argument is the name of a variable whose contents are to be searched. When omitting
/Variable
, the haystack argument will be considered a string literal to search. - needle
- A string of characters, or a single character, to search for.
- variable
- Find the first semi-colon in the string stored in the variable variable.
#v := set 'You must be joking ;-)' #i := strchr /v /- ';' '#v' // #i == 19