Click here to Skip to main content
15,887,875 members

Comments by _Natula (Top 18 by date)

_Natula 13-Jun-13 20:21pm View    
I don't want to list all possible numbers, it got to be some algorithm.thanks for ur time again.
_Natula 13-Jun-13 19:59pm View    
Thanks I am aware of LevenshteinDistance,I am looking for the way how to normalize the address.eg 1st to First.2nd to second.
_Natula 13-Jun-13 19:11pm View    
I like you approach. Would you provide sample code please.
_Natula 10-Apr-13 13:59pm View    
let say I want prompt a message box says "Not Invalid".The code u provided pop up "Not Valid" for the String.Empty at the lost focus event.I don,t want to show "Not Valid" message for string.empty; Thanks for your time
_Natula 10-Apr-13 13:36pm View    
Thank you- your code treat blank string as "Not Valid".this field is not required field.

This one works but i did not like it:-
var vPromptCharCount = MaskedtxtTaxId.Text.Count(x => x == '_');
if (count > 0 && count < 9)
{
//invalid
}