Click here to Skip to main content
Licence CPOL
First Posted 16 Jun 2007
Views 20,924
Downloads 116
Bookmarked 11 times

Count with Letters

By | 16 Jun 2007 | Article
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:

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:

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

and:

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:

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:

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)

About the Author

zeltera

Engineer

Israel Israel

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 PinmemberMichael Ascker12:26 20 Jan '11  
General[My vote of 2] My vote of 2 PinmemberRajkumar-Kannan16:45 28 Feb '10  
GeneralRe: [My vote of 2] My vote of 2 Pinmemberzeltera18:50 28 Feb '10  
GeneralMy vote of 1 PinmemberBillWoodruff18:28 26 Dec '09  
GeneralLetter arithmetic Pinmemberdjlove6:23 21 Jun '07  
GeneralPosible extension for this application Pinmemberzeltera23:25 19 Jun '07  
GeneralString + Integer PinmemberSteve Hansen3:11 18 Jun '07  
GeneralRe: String + Integer Pinmemberzeltera3:21 18 Jun '07  
GeneralRe: String + Integer Pinmemberzeltera3:30 18 Jun '07  
GeneralRe: String + Integer PinmemberSteve Hansen5:22 18 Jun '07  
GeneralRe: String + Integer Pinmemberzeltera6:13 18 Jun '07  
GeneralActually... Pinmembersharpiesharpie1:00 17 Jun '07  
GeneralRe: Actually... Pinmemberzeltera1:12 17 Jun '07  
GeneralRe: Actually... [modified] Pinmembersharpiesharpie1:56 17 Jun '07  
GeneralRe: Actually... PinmemberKamarey10:04 17 Jun '07  
GeneralRe: Actually... Pinmemberzeltera10:38 17 Jun '07  
GeneralRe: Actually... PinmemberKamarey5:17 19 Jun '07  
GeneralRe: Actually... Pinmemberdjlove23:15 19 Jun '07  
GeneralRe: Actually... PinmemberKamarey2:19 20 Jun '07  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 17 Jun 2007
Article Copyright 2007 by zeltera
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid