RESplit(str, regex)
Last updated January 29, 2002
Version: 2 | Requires: ColdFusion 5 | Library: StrLib
Description:
This UDF will split a string into an array based on the regular expression passed in. If the regex is not found, the entire string is returned in the first element of the array.
Return Values:
Returns an array.
Example:
<cfset res = RESplit(str,"[\.[:space:],]+")>
<cfdump var="#res#">
Parameters:
| Name | Description | Required |
|---|---|---|
| str | The string to search. | Yes |
| regex | The regular expression to split on. | Yes |
Full UDF Source:
<cfscript>
/**
* Splits a string into arrays based on a regex.
* Fix for missing end item by Thomas Muck (tommuck@basic-drumbeat.com)
*
* @param str The string to search.
* @param regex The regular expression to split on.
* @return Returns an array.
* @author Raymond Camden (tommuck@basic-drumbeat.comray@camdenfamily.com)
* @version 2, January 29, 2002
*/
function RESplit(str,regex) {
var results = arrayNew(1);
var test = REFind(regex,str,1,1);
var pos = test.pos[1];
var oldpos = 1;
if(not pos) results[1] = str;
while(pos gt 0) {
arrayAppend(results,mid(str,oldpos,pos-oldpos));
oldpos = pos+test.len[1];
test = REFind(regex,str,oldpos+1,1);
pos = test.pos[1];
}
//Thanks to Thomas Muck
if(len(str) GT oldpos) arrayappend(results,right(str,len(str)-oldpos + 1));
return results;
}
</cfscript>
Search CFLib.org
Latest Additions
Adam Cameron added
composeDateTime
20 day(s) ago
Chris Weller added
convertQueryStri...
a while ago
Greg Nettles added
arrayDiff
a while ago
Nathan Dintenfass added
ArrayOfStructsSo...
a while ago
Top Rated
backupDatabase
Rated 5.0, 36 time(s)
indentXml
Rated 5.0, 10 time(s)
deAccent
Rated 5.0, 6 time(s)
countArbitraryDa...
Rated 5.0, 5 time(s)