vote up 2 vote down star

I would like to remove the domain/computer information from a login id in C#. So, I would like to make either "Domain\me" or "Domain\me" just "me". I could always check for the existence of either, and use that as the index to start the substring...but I am looking for something more elegant and compact.

Worse case scenario:

                        int startIndex = 0;
                        int indexOfSlashesSingle = ResourceLoginName.IndexOf("\");
                        int indexOfSlashesDouble = ResourceLoginName.IndexOf("\\");
                        if (indexOfSlashesSingle != -1)
                            startIndex = indexOfSlashesSingle;
                        else
                            startIndex = indexOfSlashesDouble;
                        string shortName = ResourceLoginName.Substring(startIndex, ResourceLoginName.Length-1);

Thanks in advance.

flag

40% accept rate

4 Answers

vote up 2 vote down check

when all you have is a hammer, everything looks like a nail.....

use a razor blade ----

using System;
using System.Text.RegularExpressions;
public class MyClass
{
    public static void Main()
    {
    	string domainUser = Regex.Replace("domain\\user",".*\\\\(.*)", "$1",RegexOptions.None);
    	Console.WriteLine(domainUser);	

    }

}
link|flag
Excellent point; using RegEx is a much more elegant solution. – Dan Oct 9 '08 at 16:38
vote up 3 vote down

You could abuse the Path class, thusly:

string shortName = System.IO.Path.GetFileNameWithoutExtension(ResourceLoginName);
link|flag
Nice, that's clever. – Pete Oct 9 '08 at 2:56
vote up 1 vote down
        string theString = "domain\\me";
        theString = theString.Split(new char[] { '\\' })[theString.Split(new char[] { '\\' }).Length - 1];
link|flag
Yep, that's how I do it too with the addition of BoltBait's conversion to lower, because it's always helpful to have the usernames in a "controlled" casing (if using them as indexer keys for instance. – Kevin Dostalek Oct 9 '08 at 1:46
Good point, Kevin. I also figured that speed was definitely not an issue in this case, hence the multiple calls to split, etc. Makes for ugly code, but... – Matt Dawdy Oct 9 '08 at 2:20
vote up 0 vote down

I always do it this way:

    string[] domainuser;
    string Auth_User = Request.ServerVariables["AUTH_USER"].ToString().ToLower(); 
    domainuser = Auth_User.Split('\\');

Now you can look at domainuser.Length to see how many parts are there and domainuser[0] for the domain and domainuser[1] for the username.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.