I am using C# and I want to convert a string to int to verify name. For example ** or 12 is not a name. I just want to convert the string into ASCII values and then will verify the name. How do I do that?
|
|
|||||||||||||
|
|
Converting back and forth is simple:
If you do not know that the input string is valid, use the |
|||
|
|
|
From what I understand, you want to verify that a given string represents a valid name? I'd say you should probably provide more details as to what constitutes a valid name to you, but I can take a stab at it. You could always iterate over all the characters in the string, making sure they're letters or white space:
Of course names can have other legitimate characters, such as apostrophe ' so you'd have to customize this a bit, but it's a starting point from what I understand your question truly is. (Evidently, not all white space characters would qualify as acceptable either.) |
|||
|
It's not clear to me what you're trying to do, but you can get the ASCII codes for a string with this code:
|
|||
|
|