www.pudn.com > ppc_edit-1.2-src.zip > TextInfo.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace Modules
{
public static class TextInfo
{
public static int CharCount(String Text, bool WithSpaces)
{
if (WithSpaces)
return Text.Length;
else
return Text.Replace(" ", "").Replace("\n", "").Replace("\r", "").Replace("\t", "").Length;
}
}
}