Helper Scripts Collection 1.3.1
API documentation for the helper scripts compatible with Unity3D
|
A custom string extension helper class More...
Static Public Member Functions | |
static ulong | GetUInt64Hash (this string text) |
Turn this string into a ulong hash using the SHA256 algorithm More... | |
static ulong | GetUInt64Hash (this string text, HashAlgorithm hasher) |
author: https://stackoverflow.com/a/50364956 More... | |
static string | CropString (this string text, int maxLength=40, string appendSymbolsOnLengthExceeded="...") |
Crop this string and append with appendSymbolsOnLengthExceeded if the maxLength is exceeded More... | |
A custom string extension helper class
|
static |
Crop this string and append with appendSymbolsOnLengthExceeded if the maxLength is exceeded
text | |
maxLength | |
appendSymbolsOnLengthExceeded |
|
static |
Turn this string into a ulong hash using the SHA256 algorithm
text |
|
static |