11 lines
305 B
C#
11 lines
305 B
C#
namespace Template.Shared.Core.Utility;
|
|
|
|
public static class UtilityString
|
|
{
|
|
public static string ExtractInitials(string fullname)
|
|
{
|
|
return string.Concat(fullname
|
|
.Split(' ', StringSplitOptions.RemoveEmptyEntries)
|
|
.Select(word => char.ToUpper(word[0])));
|
|
}
|
|
} |