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

I want to iterate over the alphabet like so:

foreach(char c in alphabet)
{
 //do something with letter
}

Is an array of chars the best way to do this? (feels hacky)

Edit: The metric is "least typing to implement whilst still being readable and robust"

share|improve this question
Anytime you ask a "best" question, you need to give metrics to evaluate against or else everyone is going to throw specific answers out which likely do not apply to your unique situation. – NickLarsen Feb 5 '10 at 16:42
The only thing that may be hacky as you put it is that you are using a foreach loop instead of a standard for loop, but even then its not really hacky. – Woot4Moo Feb 5 '10 at 16:44
I was looking for a "neater" way than enumerating over an array of chars. The metric is "least typing to implement whilst still being readable and robust" - Richard's answer is closest to my original thinking (which I couldn't articulate at the time of questioning) – Ben Feb 5 '10 at 16:48

6 Answers

up vote 48 down vote accepted

(Assumes ASCII, etc)

for (char c = 'A'; c <= 'Z'; c++)
{
    //do something with letter 
} 

Alternatively, you could split it out to a provider and use an iterator (if you're planning on supporting internationalisation):

public class EnglishAlphabetProvider : IAlphabetProvider
{
    public IEnumerable<char> GetAlphabet()
    {
        for (char c = 'A'; c <= 'Z'; c++)
        {
            yield return c;
        } 
    }
}

IAlphabetProvider provider = new EnglishAlphabetProvider();

foreach (char c in provider.GetAlphabet())
{
    //do something with letter 
} 
share|improve this answer
Woah...never thought of that. Brilliant! – Bobby Feb 5 '10 at 16:42
6  
If you neeeeed foreach: Enumerable.Range('a', 'z'-'a' + 1).Select(x=>(char)x) – Rob Fonseca-Ensor Feb 5 '10 at 16:43
@Richard: You just give half of the solution. I like your generic IAlphabetProvider approach, but you need a factory to get the correct provider. Something like: var provider = AlphabetProvider.GetProvider(CultureInfo.CurrentCulture); – Steven Feb 5 '10 at 17:47
3  
It's just sample code, I can't write the entire application in my answer. FYI by having a static method, your solution is coupled to the AlphabetProvider class. – Richard Szalay Feb 6 '10 at 10:29
1  
@Rob - argh! I forgot that normal casts don't work between generic parameters. If you write your own version of Cast, you find the compiler won't accept it unless you cast to object first. Which makes it a boxing conversion, so you can only get out exactly whatever you put in. So I withdraw my comment. – Daniel Earwicker Feb 10 '10 at 9:33
show 5 more comments

You could do this:

for(int i = 65; i <= 95; i++)
{
    //use System.Convert.ToChar() f.e. here
    doSomethingWithTheChar(Convert.ToChar(i));
}

Though, not the best way either. Maybe we could help better if we would know the reason for this.

share|improve this answer
1  
Agreed, need reason. – NickLarsen Feb 5 '10 at 16:41
3  
Needs more char! – meagar Feb 5 '10 at 16:42

Well to use the foreach loop in C#, alphabet can be any IEnumerable<char>. What feels "hacky" about it?

share|improve this answer

Or you could do,

string alphabet = "abcdefghijklmnopqrstuvwxyz";

foreach(char c in alphabet)
{
 //do something with letter
}
share|improve this answer
With this solution, internationalization is easy: use different letters :) (assuming C#'s foreach char goes by letter rather than 8-bit sequence). If it doesn't, I don't know the best approach for multi-byte characters in C#. – Joey Adams Feb 9 '10 at 23:03

I found this:

foreach(char letter in Enumerable.Range(65, 26).ToList().ConvertAll(delegate(int value) { return (char)value; }))
{
//breakpoint here to confirm
}

while randomly reading this blog, and thought it was an interesting way to accomplish the task.

share|improve this answer
1  
I hope this was a joke. Really :) – mw_21 Aug 7 '12 at 14:14
Enumerable.Range(65, 26).Select(a => new { A = (char)(a) }).ToList().ForEach(c => Console.WriteLine(c.A));
share|improve this answer
Not much point newing-up an anonymous object to store a single property. And the built-in foreach statement is usually clearer for performing an action on each item of a sequence - that's what it's for. – Daniel Earwicker Feb 9 '10 at 23:04

protected by tchrist Sep 11 '12 at 10:58

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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