Tagged Questions
The fullname tag has no wiki summary.
3
votes
4answers
661 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 = ...
3
votes
6answers
642 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, ...
2
votes
1answer
372 views
In powershell $x.FullName not returning full path
I have a powershell script below which takes a config file and deletes files older than x days matching a regular expression.
Config File:
path,pattern,days,testrun
...
2
votes
1answer
2k views
Retrieve OpenId FullName from Google
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
...
1
vote
2answers
328 views
Cocoa Touch get User's full name
I have seen several other Apps getting my full name. I have this set up in my Address Book, which syncs with my Mac. On My Mac, a card with my name is marked as the 'me' card. How do the iOS apps get ...
1
vote
1answer
25 views
Why I cannot see an image if I do not use the full name of an image?
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 ...
1
vote
4answers
2k views
Is it never possible to get the FullName from a file using Silverlight OpenFileDialog?
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 ...
0
votes
4answers
56 views
To show only file name without the entire directory path
ls /home/user/new/*.txt prints all txt files in that directory. However it prints the output as follows:
[me@comp]$ ls /home/user/new/*.txt
/home/user/new/file1.txt /home/user/new/file2.txt ...
0
votes
2answers
96 views
How to Generate Unique Full Names from $names[], $surnames[]?
I have two arrays (actual size is 10x bigger):
$names = array(
'James',
'John',
'Robert',
'Michael',
'William'
);
$surnames = array(
'Smith',
'Johnson',
'Williams'
);
...
0
votes
4answers
433 views
Is it possible to convert full name to firstname and lastname?
I need to convert full name to first and last name. Is this possible within ~90% success rate if names are mostly western?
0
votes
1answer
447 views
Get user's full name from active directory in asp.net web application
I am trying to get the full name of a given user from active directory.
This code works on my PC but when I put it on the server it throws exception:
The network path was not found.
The code is: ...
0
votes
3answers
1k views
Parse Full Name Field Oracle
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 ...