public static string UnescapeText(this string input, char escapeChar) { return(input.UnescapeText(escapeChar.AsArraySingle())); }
public static bool CanSplitScoped(this string input, char splitChar, char leftScoper, char rightScoper) { return(input.CanSplitScoped(splitChar, leftScoper.AsArraySingle(), rightScoper.AsArraySingle())); }
public static string[] SplitScoped(this string input, char splitChar, char leftScoper, char rightScoper, int maxCount, bool autoReduceScope = false) { return(input.SplitScoped(splitChar, leftScoper.AsArraySingle(), rightScoper.AsArraySingle(), maxCount, autoReduceScope)); }
public static string ReduceScope(this string input, char leftScoper, char rightScoper) { return(input.ReduceScope(leftScoper.AsArraySingle(), rightScoper.AsArraySingle())); }
public static string ReduceScope(this string input, char leftScoper, char rightScoper, int maxReduction = -1) { return(input.ReduceScope(leftScoper.AsArraySingle(), rightScoper.AsArraySingle(), maxReduction)); }