> That would be great... > Looking at justin's example (reReplace(variables.string, ".", "*", > "all")) It seems like it would only look for "." and them replace those > with * or am I missing something? Does "." me
In a regular expression, the period is a special character meaning "match any character" and in combination with the "all" scope, it will replace any character with a *. -Justin Scott, Lead Developer Sceiron Internet Services, Inc. http://www.sceiron.com ______________________________________________________________________ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
