Click here to Skip to main content
15,885,730 members
Articles / Programming Languages / C#
Article

Count with Letters

Rate me:
Please Sign up or sign in to vote.
2.94/5 (9 votes)
16 Jun 2007CPOL1 min read 42.8K   185   11   19
A way to use letters instead of numbers to count

Introduction

I had to write a "text tool" application a few days ago, and one of the requests was to "number" text lines with letters (like Microsoft Word does from bullets and numbering). Because I couldn't find an "already made" function for this, I had to do it myself. It's not difficult - this article is for beginner's (plus) level.

Background

To understand this function, all you need is to have basic knowledge of C# (to know the char type, the string type and to understand how to convert between these types).

Using the Code

This code is free. You can use and redistribute. You can improve it (because it is not perfect).

The code

The function is like this:

C#
private string GetNext(string current) 
{return curent + 1; // the next value}

Let's say that current = "a", then, the return will be "b". If the current = "z", the return will be "aa". If current = "abcd" the return is "abce" and so on.

To do this, I need 2 auxiliary functions:

C#
private char GetNextChar(char c)
{
	if (c < 'z')
		return (char)((int)c + 1);
	else 
		return 'a'; 
} 

and:

C#
private string ReverseString(string str)
{
	StringBuilder sb = new StringBuilder();
	for (int i = str.Length - 1; i >= 0; i--)
		sb.Append(str[i]);
	return sb.ToString();
}

The ReverseString function is only because I feel more comfortable to work with the string from left to right.

The main function is:

C#
private string GetNext(string curent)
{
	string next = "";
	int depl = 0;
	curent = ReverseString(curent);
	char curent_digit;

	curent_digit = GetNextChar(curent[0]);
	if (curent_digit < curent[0])
		depl = 1;
	else
		depl = 0;
	next = curent_digit.ToString();
            
	for (int i = 1; i < curent.Length; i++)
	{
		curent_digit = curent[i];
		if (depl != 0)
		{
			curent_digit = GetNextChar(curent[i]);
			if (curent_digit < curent[i])
				depl = 1;
			else
				depl = 0;
		}
	                
		next += curent_digit.ToString();
	
	}
	if (depl == 1)
		next += 'a'.ToString();
	return ReverseString(next);
} 

As an example of usage for this:

C#
private void btnNext_Click(object sender, EventArgs e)
{
	string s = txtCurent.Text;
	StringBuilder tmp = new StringBuilder();
	for (int i = 0; i < 10000; i++)
	{
		s = GetNext(s);
		tmp.AppendLine(s);
	}
	lblLast.Text = s.ToString();
}

A form, with a button and a textbox (with multiline = true) to see the result.

History

  • 17th June, 2007: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 1 Pin
Michael Ascker20-Jan-11 12:26
Michael Ascker20-Jan-11 12:26 
General[My vote of 2] My vote of 2 Pin
Rajkumar-Kannan28-Feb-10 16:45
Rajkumar-Kannan28-Feb-10 16:45 
GeneralRe: [My vote of 2] My vote of 2 Pin
zeltera28-Feb-10 18:50
zeltera28-Feb-10 18:50 
GeneralMy vote of 1 Pin
BillWoodruff26-Dec-09 18:28
professionalBillWoodruff26-Dec-09 18:28 
GeneralLetter arithmetic Pin
djlove21-Jun-07 6:23
djlove21-Jun-07 6:23 
GeneralPosible extension for this application Pin
zeltera19-Jun-07 23:25
zeltera19-Jun-07 23:25 
GeneralString + Integer Pin
Steve Hansen18-Jun-07 3:11
Steve Hansen18-Jun-07 3:11 
GeneralRe: String + Integer Pin
zeltera18-Jun-07 3:21
zeltera18-Jun-07 3:21 
GeneralRe: String + Integer Pin
zeltera18-Jun-07 3:30
zeltera18-Jun-07 3:30 
GeneralRe: String + Integer Pin
Steve Hansen18-Jun-07 5:22
Steve Hansen18-Jun-07 5:22 
GeneralRe: String + Integer Pin
zeltera18-Jun-07 6:13
zeltera18-Jun-07 6:13 
GeneralActually... Pin
sharpiesharpie17-Jun-07 1:00
sharpiesharpie17-Jun-07 1:00 
GeneralRe: Actually... Pin
zeltera17-Jun-07 1:12
zeltera17-Jun-07 1:12 
GeneralRe: Actually... [modified] Pin
sharpiesharpie17-Jun-07 1:56
sharpiesharpie17-Jun-07 1:56 
GeneralRe: Actually... Pin
Kamarey17-Jun-07 10:04
Kamarey17-Jun-07 10:04 
GeneralRe: Actually... Pin
zeltera17-Jun-07 10:38
zeltera17-Jun-07 10:38 
GeneralRe: Actually... Pin
Kamarey19-Jun-07 5:17
Kamarey19-Jun-07 5:17 
GeneralRe: Actually... Pin
djlove19-Jun-07 23:15
djlove19-Jun-07 23:15 
GeneralRe: Actually... Pin
Kamarey20-Jun-07 2:19
Kamarey20-Jun-07 2:19 
Cool | :cool:

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.