home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1999 April / APC443.iso / features / grpware / coldfus / coldfusi.exe / data1.cab / Documentation / snippets / spanexcluding.cfm < prev    next >
Encoding:
Text File  |  1998-10-08  |  901 b   |  40 lines

  1. <!--- Displays SpanExcluding --->
  2.  
  3. <HTML>
  4.  
  5. <HEAD>
  6. <TITLE>
  7. SpanExcluding Example
  8. </TITLE>
  9. </HEAD>
  10.  
  11. <BODY bgcolor=silver>
  12.  
  13. <H3>SpanExcluding Example</H3>
  14.  
  15. <CFIF IsDefined("form.myString")>
  16. <P>Your string was <CFOUTPUT>#form.myString#</CFOUTPUT>
  17. <P>Your set of characters was <CFOUTPUT>#form.mySet#</CFOUTPUT>
  18. <P>Your string up until one of the characters in the set is:
  19. <CFOUTPUT>#SpanExcluding("#form.myString#", "#form.mySet#")#</CFOUTPUT>
  20.  
  21. </CFIF>
  22.  
  23.  
  24. <P>Returns all characters from string from
  25. beginning until it reaches a character from the set
  26. of characters.  The search is case-sensitive.
  27.  
  28. <FORM ACTION="spanexcluding.cfm" METHOD="POST">
  29. <P>Enter a string:
  30. <BR><INPUT TYPE="Text" NAME="myString" VALUE="Hey, you!">
  31. <P>And a set of characters:
  32. <BR><INPUT TYPE="Text" NAME="mySet" VALUE="Ey">
  33. <BR><INPUT TYPE="Submit" NAME="">
  34. </FORM>
  35.  
  36.  
  37. </BODY>
  38.  
  39. </HTML>       
  40.