using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using System.Xml;
using System.IO;
namespace Billing
{
publicclass StringUtils
{
publicstatic bool IsAlphaNumeric(string str)
{
return Regex.IsMatch(str, "^[a-zA-Z0-9]*$");
}
}
}