$Web IsIndex Parm Len: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
(Automatically generated page update)
Line 1: Line 1:
{{DISPLAYTITLE:$Web_IsIndex_Parm_Len}}
{{DISPLAYTITLE:$Web_IsIndex_Parm_Len}}
<span class="pageSubtitle"><section begin="desc" />Length of isindex field<section end="desc" /></span>
<span class="pageSubtitle">Length of isindex field</span>


<var>$Web_IsIndex_Len</var> retrieves the length of an isindex field in a URL. <var>$Web_IsIndex_Parm_Len</var> is a somewhat more syntactically correct synonym for <var>$Web_IsIndex_Len</var>.  
<var>$Web_IsIndex_Len</var> retrieves the length of an isindex field in a URL. <var>$Web_IsIndex_Parm_Len</var> is a somewhat more syntactically correct synonym for <var>$Web_IsIndex_Len</var>.  
Line 9: Line 9:


==Syntax==
==Syntax==
<p class="syntax"><section begin="syntax" /><span class="term">%rc</span> = $WEB_ISINDEX_[PARM_]LEN( fieldname, occurrence )
<p class="syntax"><span class="term">%rc</span> = $WEB_ISINDEX_[PARM_]LEN( fieldname, occurrence )
<section end="syntax" /></p>
</p>


===Syntax terms===
===Syntax terms===

Revision as of 19:24, 9 April 2013

Length of isindex field

$Web_IsIndex_Len retrieves the length of an isindex field in a URL. $Web_IsIndex_Parm_Len is a somewhat more syntactically correct synonym for $Web_IsIndex_Len.

Since isindex fields are more commonly called "URL parameters," you can use another synonym for this $function, $Web_URL_Parm_Len.

$Web_IsIndex_Len takes two arguments and returns a number, or zero if the field does not exist.

Syntax

%rc = $WEB_ISINDEX_[PARM_]LEN( fieldname, occurrence )

Syntax terms

fieldname The name of the isindex field, returned by $Web_IsIndex_Name. Required argument if occurrence not specified, otherwise optional.
occurrence The occurrence number of an isindex field, or the occurrence number of the isindex field matching 'fieldname', if fieldname is specified. Optional argument if fieldname is specified, otherwise it is required.

See also