c.StringExtensions.StripExtraSpaces

PHOTO EMBED

Mon Sep 13 2021 14:25:37 GMT+0000 (Coordinated Universal Time)

Saved by @rick_m #c#

using System.Text;
using System.Text.RegularExpressions;

public static class StringExtensions
{
    public static string StripExtraSpaces(this string s)
    {
        if (string.IsNullOrEmpty(s))
            return string.Empty;

        Regex r = new Regex(@"\s+");//remove all whitespace
        s = r.Replace(s, " ");	// to a single space

        return s;
    }
}
content_copyCOPY

"a b".StripExtraSpaces();