Creating a processor
[Processor]
public static string RemoveExclamationProcessor(string input)
{
return input.Replace("!", string.Empty);
}Last updated
[Processor]
public static string RemoveExclamationProcessor(string input)
{
return input.Replace("!", string.Empty);
}Last updated