1
vote
4answers
164 views
Correct way to obtain base name of a generic type in .NET is through Substring?
If I have this:
Type t = typeof(Dictionary<String, String>);
How do I get "System.Collections.Generic.Dictionary" as a string? Is the best/only way to do this:
String n = …
0
votes
4answers
120 views
Is it never possible to get the FullName from a file using Silverlight OpenFileDialog?
Hi there,
I want to get the fullname from a file on Silverlight OpenFileDialog, when I try that, Silverlight throws me an error.
I saw there is an attribute on FullName saying it is [SECURITY …
0
votes
2answers
244 views
Parse Full Name Field Oracle
Hi all,
I was wondering if anyone could help me with parsing a full name field.
I would like to separate it into lastname, firstname, middle initial, suffix.
Here are some inputs for name followed …
2
votes
6answers
411 views
How can I parse people’s full names into user names in Perl?
I need to convert a name in the format Parisi, Kenneth into the format kparisi.
Does anyone know how to do this in Perl?
Here is some sample data that is abnormal:
Zelleb, Charles F.,,IV
Eilt, …
