namespace Nikse.SubtitleEdit.Core { public static class CharUtils { /// /// Checks if character matches [0-9] /// /// /// public static bool IsDigit(char ch) { return (ch >= '0') && (ch <= '9'); } } }