Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Auto increment for alpha numeric value in c#.net

input text --> output text with increment +1

56755 --> 56756

56759 --> 5675a

5675z --> 56761

zzz --> 1111

share|improve this question
@Jon B, bažmegakapa, Sean Owen, Jason Heine and Bo Persson: can u provide me answer for this question? – ThulasiRam Nov 2 '12 at 7:10

closed as not a real question by Jon B, bažmegakapa, Sean Owen, Jason Heine, Bo Persson Nov 1 '12 at 21:49

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

up vote 0 down vote accepted

Auto increment for alpha numeric ( alpha numeric ++)value in c#.net

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace AlphaNumeric
{
    public class Program
    {
        public static void Main(string[] args)
        {
            var programObj = new Program();

            Console.WriteLine(programObj.AlphaNumericIncrement("56755")); //   56756
            Console.WriteLine(programObj.AlphaNumericIncrement("56759")); //   5675a
            Console.WriteLine(programObj.AlphaNumericIncrement("5675z")); //   56761
            Console.WriteLine(programObj.AlphaNumericIncrement("zzz"));   //   1111

            Console.ReadLine();
        }

        public string AlphaNumericIncrement(string text)
        {
            if (text == null || text.Trim().Length == 0)
                return "1";
            else
            {
                text = text.Trim();
                string alphaNum = "123456789abcdefghijklmnopqrstuvwxyz";
                var collection = text.ToLower().Trim().ToCharArray().Reverse().ToList();
                bool isNextInr = true;
                int l = collection.Count() - 1, i = 0;
                while (isNextInr && i < collection.Count())
                {
                    isNextInr = false;
                    switch (collection[i])
                    {
                        case 'z':
                            collection[i] = '1';
                            if (i < l)
                                isNextInr = true;
                            else
                                collection.Add('1');
                            break;
                        default:
                            collection[i] = char.Parse(alphaNum.Substring(alphaNum.IndexOf(collection[i]) + 1, 1));
                            break;
                    }
                    i++;
                }
                collection.Reverse();
                return string.Join("", collection);
            }
        }
    }
}
share|improve this answer
string text should be only contains alphabetic and integer. no special characters. – ThulasiRam Nov 1 '12 at 16:28

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