StringBuilderExtensionPolyfillExtension Class

Extension methods, which act as Polyfills for the extension methods of the StringBuilderExtension class.

Definition

Namespace: FolkerKinzel.Strings
Assembly: FolkerKinzel.Strings (in FolkerKinzel.Strings.dll) Version: 9.4.0+10a7d4d71aa960998e32ac0ac6c4fcbe4164c917
C#
public static class StringBuilderExtensionPolyfillExtension
Inheritance
Object    StringBuilderExtensionPolyfillExtension

Remarks

The polyfills are available for .NET Framework 4.5 and .NET Standard 2.0.

Methods

AppendUrlEncodedAppends the content of a String as URL-encoded character sequence to the end of a StringBuilder.
ReplaceWhiteSpaceWith(StringBuilder, String, Boolean)Replaces in builder all sequences of white space with replacement.
ReplaceWhiteSpaceWith(StringBuilder, String, Int32, Boolean)Replaces in a section of builder, which starts at startIndex and extends to the end of builder, all sequences of white space with replacement.
ReplaceWhiteSpaceWith(StringBuilder, String, Int32, Int32, Boolean)Replaces in a section of builder, which starts at startIndex and which is count characters long, all sequences of white space with replacement.
TrimRemoves all leading and trailing occurrences of a set of characters specified in a String from builder.
TrimEndRemoves all trailing occurrences of a set of characters specified in a String from builder.
TrimStartRemoves all leading occurrences of a set of characters specified in a String from builder.

See Also