> ok, hate to bug all of ya, but how can i replace a word with *'s? > the word might have upper/lower/numbers.... > (ie, masking a password)
Sure.. regular expressions are your friends. reReplace(variables.string, ".", "*", "all") There is also reReplaceNoCase() if needed, though the above should work for you. That will replace each of any character with a * character. -Justin Scott, Lead Developer Sceiron Internet Services, Inc. http://www.sceiron.com ______________________________________________________________________ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
