Skip to content

Instantly share code, notes, and snippets.

Created October 27, 2017 11:42
Show Gist options
  • Save anonymous/94d05f5f8cbddea7f83dee1b15757118 to your computer and use it in GitHub Desktop.
Save anonymous/94d05f5f8cbddea7f83dee1b15757118 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
password = 'Password123';
password_firstchar = left(password,1);
password_lastchar = right(password,1);
writeOutput(password_firstchar & '***' & password_lastchar);
writeOutput('<p>&nbsp;</p>');
writeOutput(password_firstchar);
writeOutput(repeatString('.',len(password)-2));
writeOutput(password_lastchar);
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment