Let's say I have the following string:
"/encryption:aes128 /password:<PASSWORDHERE> /log:log.txt"
I need to write this to a log file but the password needs to be masked (replaced with asterisks for example).
I can do this easily with String.IndexOf and String.Replace in a few lines of code but I'm interested in seeing how others would implement this so that the code is as short and concise as possible. A one line replace function would be best.
My goal here is to see/learn some new techniques of combining string functions.
Note that I am not interested in using a RegEx.