Skip to content

Instantly share code, notes, and snippets.

@5up3rman
Created August 23, 2017 01:18
Show Gist options
  • Save 5up3rman/adecef795875ea585173e180e93b3568 to your computer and use it in GitHub Desktop.
Save 5up3rman/adecef795875ea585173e180e93b3568 to your computer and use it in GitHub Desktop.
ProposeValidItemName
static void Main(string[] args)
{
var wildItemName = "<strong>Name of a Product<sup>™</sup> Version 1</strong>";
var notEntirelyFixed = ItemUtil.ProposeValidItemName(wildItemName);
Console.WriteLine(notEntirelyFixed);
Console.ReadKey();
}
// Result: strongName of a Productsupsup Version 1strong
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment