Remove Nulls with Regex : Match « Regular Expressions « C# / C Sharp






Remove Nulls with Regex

   

//CruiseControl is open source software and is developed and maintained by a group of dedicated volunteers. 
//CruiseControl is distributed under a BSD-style license.
//http://cruisecontrol.sourceforge.net/
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;

namespace ThoughtWorks.CruiseControl.Core.Util
{
    /// <summary>
    /// Class with handy stirng routines
    /// </summary>
    public class StringUtil
    {

        public static string RemoveNulls(string s)
        {
            Regex NullStringRegex = new Regex("\0");

            return NullStringRegex.Replace(s, string.Empty).TrimStart();
        }
    }
}

   
    
    
  








Related examples in the same category

1.Regular expressions: MatchRegular expressions: Match
2.Use regualr expression to check if a string is a GUID
3.Count lines in a string with regular expression
4.Validates the phone number with regular expression
5.Validates the area code with regular expression
6.Validates the exchange code with regular expression
7.Validates the local 4 digit phone number with regular expression
8.Get Area Code by using Regular expression
9.Format Phone Number
10.Clean Telephone Number with Regular expression
11.Provides static validation methods for strings.
12.Replace string with regular expression
13.Checks if name matches pattern with '?' and '*' wildcards.