Files
Nitrox/NitroxClient/Unity/Helper/StringUtils.cs
2025-07-06 00:23:46 +02:00

39 lines
1.1 KiB
C#

using System.Text;
using NitroxModel.Helper;
namespace NitroxClient.Unity.Helper
{
public static class StringUtils
{
public static string TruncateRight(this string value, int maxChars, string appendix = "...")
{
Validate.NotNull(value);
Validate.NotNull(appendix);
return value.Length <= maxChars ? value : value.Substring(0, maxChars) + appendix;
}
public static string TruncateLeft(this string value, int maxChars, string appendix = "...")
{
Validate.NotNull(value);
Validate.NotNull(appendix);
return value.Length <= maxChars ? value : appendix + value.Substring(value.Length - maxChars, maxChars);
}
public static string ByteArrayToHexString(this byte[] bytes)
{
StringBuilder hex = new StringBuilder(bytes.Length * 2);
foreach (byte b in bytes)
{
hex.Append("0x");
hex.Append(b.ToString("X2"));
hex.Append(" ");
}
return hex.ToString();
}
}
}