1
0
mirror of synced 2024-12-01 01:27:21 +01:00
TaikoLocalServer/TaikoWebUI/Utilities/StringUtil.cs

25 lines
711 B
C#
Raw Normal View History

namespace TaikoWebUI.Utilities
{
public interface IStringUtil
{
List<string> SplitIntoGroups(string str, int groupSize);
}
public class StringUtil : IStringUtil
{
public List<string> SplitIntoGroups(string str, int groupSize)
{
List<string> groups = new List<string>();
for (int i = 0; i < str.Length; i += groupSize)
{
groups.Add(str.Substring(i, Math.Min(groupSize, str.Length - i)));
}
return groups;
}
public bool OnlyHexInString(string test)
{
return System.Text.RegularExpressions.Regex.IsMatch(test, @"\A\b[0-9a-fA-F]+\b\Z");
}
}
}