vote up 3 vote down star

How can I count the number of characters within a string and create another string with the same number of characters but replace all of them with a single character such as "*"? Thank you.

flag

3  
Is this home work? – Nate Oct 24 at 7:24
1  
No, personal project. – Nate Shoffner Oct 24 at 8:58

4 Answers

vote up 13 vote down check
string newString = new string('*', oldString.Length);

Of course, it this is for displaying password equivalents, it might be better to use a fixed number of asterisks - the less clues the better. Of course, since you'd obviously be hashing the password (with salt) and storing just the hash, you couldn't know the actual length anyway ;-p

link|flag
1  
Works great. Thank you. – Nate Shoffner Oct 24 at 10:41
A fixed number of asterisks makes no sense for a password input field. If you're going to give the user no feedback whatsoever, then you might as well not display anything at all. – Joren Oct 29 at 22:34
vote up 0 vote down
var message = "hello world" ;
var newMessage = new String('*', message.Length);
link|flag
Use message.Length instead – Ahmed Said Oct 24 at 7:51
agreed, silly typo. thx! – Qwerty Oct 25 at 1:45
vote up 1 vote down

Another solution would be:

Console.Write(System.Text.RegularExpressions.Regex.Replace("test",".", "*"));
link|flag
From a performance perspective, it would be extremely unwise to create a Regex object for a purpose such as this. The above string methods would be more performant. – Qwerty Oct 24 at 7:31
yah, I know but it seems the question didn't ask for any perfomance hit. – daxsorbito Oct 24 at 7:33
1  
Please back up "from a performance perspective ... unwise to create a Regex object". While it may not be an ideal solution here, this smells like a bad case of "premature optimization guessing". – pst Oct 24 at 8:45
OK, happy to cater for your opinions re. "premature optimization guessing". However, my comment about not being a good idea to create a regex parser for this (over the other solutions) stands. – Qwerty Oct 25 at 1:48
vote up 0 vote down
string s = new String('a', originalString.Length);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.