first commit
This commit is contained in:
38
NitroxClient/Unity/Helper/StringUtils.cs
Normal file
38
NitroxClient/Unity/Helper/StringUtils.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user