ExtensionMethod.NET Home of 875 C#, Visual Basic, F# and Javascript extension methods

RemoveSpecialCharacters

Sometimes it is required to remove some special characters like carriage return, or new line which can be considered as invalid characters, especially while file processing. This method removes any special characters in the input string which is not included in the allowed special character list.

Source

/// <summary>
/// Removes any special characters in the input string not provided in the allowed special character list. 
/// </summary>
/// <param name="input">Input string to process</param>
/// <param name="allowedCharacters">list of allowed special characters </param>
/// <returns></returns>
public string RemoveSpecialCharacters(string input, string allowedCharacters)
{
    char[] buffer = new char[input.Length];
    int index = 0;

    char[] allowedSpecialCharacters = allowedCharacters.ToCharArray();
    foreach (char c in input.Where(c => char.IsLetterOrDigit(c) || allowedSpecialCharacters.Any(x => x == c)))
    {
        buffer[index] = c;
        index++;
    }
    return new string(buffer, 0, index);
}

Example

// Remove carriage return from the input string
var processedString = RemoveSpecialCharacters("Hello! This is string to process. \r\n", @""",-{}.! ");

Author: Naveen V

Submitted on: 23 jun 2015

Language: C#

Type: string

Views: 5638