Creata pagina "user"

This commit is contained in:
2026-02-06 18:08:40 +01:00
parent 755f78ef9d
commit d8bef12f30
18 changed files with 660 additions and 25 deletions

View File

@@ -0,0 +1,22 @@
namespace SteUp.Shared.Core.Utility;
public static class UtilityString
{
public static string ExtractInitials(string? fullname)
{
if (fullname == null) return "";
return string.Concat(fullname
.Split(' ', StringSplitOptions.RemoveEmptyEntries)
.Take(3)
.Select(word => char.ToUpper(word[0])));
}
public static string FirstCharToUpper(this string input) =>
input switch
{
null => throw new ArgumentNullException(nameof(input)),
"" => throw new ArgumentException($"{nameof(input)} cannot be empty", nameof(input)),
_ => input[0].ToString().ToUpper() + input[1..]
};
}