Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I currently have the following code:

string user = @"DOMAIN\USER";
string[] parts = user.Split(new string[] { "\\" }, StringSplitOptions.None);
string user = parts[1] + "@" + parts[0];

Input string user can be in one of two formats:

DOMAIN\USER
DOMAIN\\USER (with a double slash)

Whats the most elegant way in C# to convert either one of these strings to:

USER@DOMAIN
share|improve this question
1  
You could do it with a Regex. I'll leave someone else to construct that regex though :) – podiluska Aug 3 '12 at 14:06

5 Answers

up vote 6 down vote accepted

Not sure you would call this most elegant:

string[] parts = user.Split(new string[] {"/"},
                            StringSplitOptions.RemoveEmptyEntries);
string user = string.Format("{0}@{1}", parts[1], parts[0]);
share|improve this answer
+1 - was just about to suggest RemoveEmptyEntries – Jon Egerton Aug 3 '12 at 14:06
@Oded add "//" to your array – M Afifi Aug 3 '12 at 14:06
1  
@MAfifi - Not needed, not with RemoveEmptyEntries. Try it. – Oded Aug 3 '12 at 14:07
@Oded never mind ignore me, quite clever :) – M Afifi Aug 3 '12 at 14:07

How about this:

        string user = @"DOMAIN//USER";
        Regex pattern = new Regex("[/]+");
        var sp = pattern.Split(user);
        user = sp[1] + "@" + sp[0];
        Console.WriteLine(user);
share|improve this answer
This doesn't correctly handle the case of the double-slash. – vcsjones Aug 3 '12 at 14:10
2  
@vcsjones Yes, it does! – Mithrandir Aug 3 '12 at 14:11
Agh, that'll teach me from thinking I understand regexes for a while. +1 – vcsjones Aug 3 '12 at 14:14

You may try this:

String[] parts = user.Split(new String[] {@"\", @"\\"}, StringSplitOptions.RemoveEmptyEntries);
user = String.Format("{0}@{1}", parts[1], parts[0]);
share|improve this answer

For the sake of adding another option, here it is:

string user = @"DOMAIN//USER";
string result = user.Substring(0, user.IndexOf("/")) + "@" + user.Substring(user.LastIndexOf("/") + 1, user.Length - (user.LastIndexOf("/") + 1));
share|improve this answer

A variation on Oded's answer might use Array.Reverse:

string[] parts = user.Split(new string[] {"/"},StringSplitOptions.RemoveEmptyEntries);
Array.Reverse(parts);
return String.Join("@",parts);

Alternatively, could use linq (based on here):

return user.Split(new string[] {"/"}, StringSplitOptions.RemoveEmptyEntries)
       .Aggregate((current, next) => next + "@" + current);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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