home *** CD-ROM | disk | FTP | other *** search
- <!--- Displays SpanExcluding --->
-
- <HTML>
-
- <HEAD>
- <TITLE>
- SpanExcluding Example
- </TITLE>
- </HEAD>
-
- <BASEFONT FACE="Arial, Helvetica" SIZE=2>
- <BODY bgcolor="#FFFFD5">
-
- <H3>SpanExcluding Example</H3>
-
- <CFIF IsDefined("form.myString")>
- <P>Your string was <CFOUTPUT>#form.myString#</CFOUTPUT>
- <P>Your set of characters was <CFOUTPUT>#form.mySet#</CFOUTPUT>
- <P>Your string up until one of the characters in the set is:
- <CFOUTPUT>#SpanExcluding(form.myString, form.mySet)#</CFOUTPUT>
-
- </CFIF>
-
-
- <P>Returns all characters from string from
- beginning until it reaches a character from the set
- of characters. The search is case-sensitive.
-
- <FORM ACTION="spanexcluding.cfm" METHOD="POST">
- <P>Enter a string:
- <BR><INPUT TYPE="Text" NAME="myString" VALUE="Hey, you!">
- <P>And a set of characters:
- <BR><INPUT TYPE="Text" NAME="mySet" VALUE="Ey">
- <BR><INPUT TYPE="Submit" NAME="">
- </FORM>
-
-
- </BODY>
-
- </HTML>
-