hi i want to saperate digits and alphabetes and operates from textbox and want to display in list box so please give me solution for my problem.....thank u

Regex.

using System.Text.RegularExpressions;

Match match = Regex.Match(yourString, @"([0-9]+)\$", RegexOptions.IgnoreCase);
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.