vote up 0 vote down star
1

Got a bit of a mind freeze at the moment. I have the following syntax:-

        string[] repname = Thread.CurrentPrincipal.Identity.ToString().Split('\');

and I get an error on the split character. Can anyone advise on how I can do the split using the \ character as the delimiter?

Cheers

flag

What is the error message? – Jeremy Reagan Jan 14 '09 at 16:34

5 Answers

vote up 14 vote down check

Use

Split('\\')

"\" is an escape character.

link|flag
cheers for that! – anonym0use Jan 14 '09 at 16:52
vote up 1 vote down

Am I wrong, or would you need an additional \ before that one to escape it?

link|flag
vote up 1 vote down

\ is an excape character in C#.

You need to do one of the following:

Split('\\');

or

Split(@'\');
link|flag
vote up 0 vote down

Split takes a char[] as a parameter, not a char. Try;

string[] repname = Thread.CurrentPrincipal.Identity.ToString().Split(new char[] {'\\'});
link|flag
Why the downvote? The non-escaped character is only part of the story, there is no overload of String.Split that takes a single char. – Stu Mackellar Jan 14 '09 at 16:45
vote up 0 vote down
 string[] repname = Thread.CurrentPrincipal.Identity.ToString().Split(new string[]{"\\"}, StringSplitOptions.None);
link|flag

Your Answer

Get an OpenID
or

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