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

I found this on stackoverflow as to how I generate the english/latin alphabet.

I would like the same as this but for the Cyrillic and Arabic alphabet - anyone know how I might create such with c#?

share|improve this question
1  
There are several different answers there. Did you try any of them? BTW - Arabic and Cyrillic Unicode blocks. – Oded Nov 30 '12 at 19:05
2  
Which alphabet? Like the Danish alphabet isn't the same as the English alphabet, but they both use Latin characters, there are a good 30 Cyrillic alphabets. And 24 Arabic alphabets. The effort to generate one isn't very meaningful, is it? – Hans Passant Nov 30 '12 at 19:33
1  
How about telling us what you are trying to do? Why "generate the Cyrillic and Arabic alphabet"? Are you going to be doing something with them afterward? There are several at Wikipedia; does that not have what you want? Why not? – Dour High Arch Nov 30 '12 at 19:55
1  
What kind of "further processing"? We are trying to understand what your end goal is - what you are trying to achieve (not how you are trying to achieve it). If we understand that, we can come up with the best way to do it. – Oded Nov 30 '12 at 20:12
1  
What difference does it make what I want to do with alphabet - I just want to know how to generate based on culture? – amateur Nov 30 '12 at 20:46
show 4 more comments

closed as not a real question by Hans Passant, Dour High Arch, Oded, Mario, jigfox Nov 30 '12 at 23:30

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You could enumerate through the code points in the applicable Unicode block. For example, Cyrillic is defined in U+0400–U+04FF, so you could use:

var cyrillic = Enumerable.Range(0x0400, 256).Select(i => (char)i);
share|improve this answer

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