using SPTarkov.Common.Extensions;
using SPTarkov.DI.Annotations;
namespace MongoIdTplGenerator.Utils;
[Injectable]
public class LocaleUtil
{
///
/// Clear any non-alpha numeric characters, and fix multiple underscores
///
/// The enum key to sanitize
/// The sanitized enum key
public string SanitizeEnumKey(string enumKey)
{
return enumKey.ToUpper().RegexReplace("[^A-Z0-9_]", "").RegexReplace("_+", "_");
}
}