vote up 0 vote down star

I have a string similar to

'l','e','t','t','e','r','s'

or

('l','e','t','t','e','r','s')

I know this should be very easy but i dont know how. I know replacing ' and , with "" is an option since both are illegal characters in the result string but i feel theres a better way to do this.

What is the easist way in C# .NET

flag

40% accept rate
Is this a string with this content: "'l','e','t','t','e','r','s'", or is this a byte array? – Stefan Steinegger Nov 4 at 15:48
iterate the characters and 'take' every 4th character starting from index x where x is determined by if the sequence starts with '(' ? – meandmycode Nov 4 at 15:50
oh easiest? I thought you wanted needlessly clever.. easiest is absolutely using replacement/regex. – meandmycode Nov 4 at 15:59
I thought a CSV would be available for this type of thing... why is everything telling me to use regex! – acidzombie24 Nov 4 at 16:23

4 Answers

vote up 0 vote down

Try using RegEx (System.Text.RegularExpressions).

it seems you want to strip out only the alphabetic characters

public static string StripNonAlphabets(string input)
{
    Regex reg = new Regex("[^A-Za-z]");

    return reg.Replace(str, string.Empty);
}

this method should return what you're looking for

link|flag
vote up 1 vote down

Unless performance is critical, you're probably best of just using simple replacement. The shortest replacement you can write is something along the lines of:

string output = Regex.Replace(input, "\W+", "");

Note that \W will not remove underscores or numbers. For keeping English letters only, you would use:

string output = Regex.Replace(input, "[^a-zA-Z]+", "");
link|flag
About performance: your code should be pretty efficient. Don’t underestimate regular expressions. – Konrad Rudolph Nov 4 at 16:15
True =) Even worse is over-estimating them though ;) It wouldn't be too hard to write some 20 lines of code that will be 10 times faster than the regular expression (although with a pre-compiled regular expression maybe it would only be 3-5 times slower than a custom solution.) – Blixt Nov 4 at 16:32
vote up 0 vote down

Well, I think just doing a replace of '/, characters with "" is the best solution, but if you like needlessly complicating things for the sake of premature optimization you could do a regex match on alphabetic characters and then concatenate all the matches together.

link|flag
vote up 10 vote down
result = "('l','e','t','t','e','r','s')".Replace("(", String.Empty).Replace("'", String.Empty;

or

result = RegEx.Replace("('l','e','t','t','e','r','s')", "[^a-zA-Z]+", String.Empty);

or

result = String.Join(String.Empty, new String() {'l','e','t','t','e','r','s'});

or

result = new String(new Char() {'l','e','t','t','e','r','s'});

Bobby

link|flag
2  
I think you have an extra caret in your second option (the RegEx) there. – Sixten Otto Nov 4 at 15:57
1  
Remove the ^ (or carets will stay in the string) and change the * to + (or the regex will "match" on every position in the string since it matches zero-length values.) – Blixt Nov 4 at 16:16
@Sixten Otto, BlixT: Thank you! – Bobby Nov 4 at 16:26

Your Answer

Get an OpenID
or

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