Re: create character listing
- To: mathgroup at smc.vnet.net
- Subject: [mg112590] Re: create character listing
- From: "Hans Michel" <hmichel at cox.net>
- Date: Tue, 21 Sep 2010 02:05:47 -0400 (EDT)
Slshippe: A bit late solution, but how about making use of base 36 in mathematica. Select[Table[ If[StringFreeQ[IntegerString[i, 36], DigitCharacter ..], IntegerString[i, 36],], {i, 13330, 15551}], (# =!= Null) &] Hans -----Original Message----- From: shippee [mailto:slshippee at gmail.com] Sent: Sunday, September 19, 2010 4:38 AM To: mathgroup at smc.vnet.net Subject: [mg112590] [mg112540] create character listing What would be the best way to create a character/string listing of all values in columnar format from "aaa" through "bzz"? I'd like to end up with something like: aaa aab aac ... ... bzz Thanks in advance, I've been away from Mathematica for a couple of years and forgotten almost everything I'd ever learned, so I'm starting over. All I could find in searching this list was variations on the distribution of "abc", if I missed a more on point posting please point me in the right direction.