cfdocs

spanExcluding

Gets characters from a string, from the beginning to a character that is in a specified set of characters. The search is case-sensitive.

spanExcluding(String, set)
returns string

Argument Reference

Name Type Required Default Description
String string Yes    
set string Yes   A string or a variable that contains a set of characters.
Must contain one or more characters

Tag Example

<cfoutput> 
 #spanExcluding('This is Great', 'r')# 
 </cfoutput>