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, John,, IV
Wods, Charles R.,,III
Welkt, Craig P.,,Jr.
These specific names should end up as czelleb, jeilt, cwoods, cwelkt... etc
ADDITION+++++
...
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 by how I would like for them to be parsed.
Parsed Stuff Begins Here-------------------------------------
nam...
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 = t.FullName.Substring(0, t.FullName.IndexOf("`"));
Seems kinda hackish to me though.
The reason I want this is that I want to take a Type object, and produce code...
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 CRITICAL], but I need to display the full path, is it really no way I can do that?
Please help.
Thanks
...
I'm using DotNetOpenAuth lib to work with Google(only) OpenId. And I'm retrieving Email without any problem. But I can't get FullName, it is always null.
request.AddExtension(new ClaimsRequest
{
Email = DemandLevel.Require,
FullName = DemandLevel.Require
});
ClaimsResponse claimsResponse = rel...
I try to add an image to JPanel. It works if I specify the full name of the image (including name of all folders). But I want my software to be machine independent (another machine does not have the same folder structure as my machine has). So, I put my image to the same place where the source is and in my code I use just name of the ima...