Table of Contents

Class StringUtilities

Namespace
Artemis.Core
Assembly
Artemis.Core.dll

Provides some random string utilities.

public static class StringUtilities
Inheritance
object
StringUtilities

Methods

RemapInternationalCharToAscii(char)

Remaps internation characters to their ASCII equivalent. Source: https://meta.stackexchange.com/a/7696

public static string RemapInternationalCharToAscii(char c)

Parameters

c char

The character to remap

Returns

string

The ASCII equivalent.

UrlFriendly(string?)

Produces optional, URL-friendly version of a title, "like-this-one". hand-tuned for speed, reflects performance refactoring contributed by John Gietzen (user otac0n)

public static string UrlFriendly(string? title)

Parameters

title string

Returns

string

Remarks