Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm calling a REST API and receiving an XML response back. It returns a list of a workspace names and I'm writing a quick IsExistingWorkspace() method. Since all workspaces consist of contiguous characters with no whitespace, I'm assuming the easiest way to find out if a particular workspace is in the list is to remove all whitespace (including newlines) and doing this (XML is the string received from the web request):

XML.Contains("<name>" + workspaceName + "</name>");

I know it's case-sensitive and I'm relying on that. I just need a way to remove all whitespace in a string efficiently. I know RegEx and LINQ can do it, but I'm open to other ideas. Mostly just concerned about speed.

share|improve this question
RegEx is your fastest option. – Henk Holterman Jun 2 '11 at 19:41
2  
Parsing XML with regex is almost as bad as parsing HTML with regex. – dtb Jun 2 '11 at 19:47
@henk holterman; See my answer below, regexp doesn't seem to be the fastest in all cases. – Henk J Meulekamp Jan 29 at 20:05

6 Answers

up vote 20 down vote accepted
Regex.Replace(XML, @"\s+", "")

Fastest way I know of, even though you said you didn't want to use Regular Expressions.

share|improve this answer
I could use a regular expression, I'm just not sure if it's the fastest way. – Corey Ogburn Jun 2 '11 at 19:39
1  
I'm pretty sure it is. At the very least behind the scenes you have to check every character, and this is just doing a linear search. – slandau Jun 2 '11 at 19:39
Yes regex is the way to go. – talia Jun 2 '11 at 19:40
There isn't a faster way, the only "other" way is to do @"string".Replace(" ", string.Empty) for a million different combinations. Regex will do it all with just that. – Smith3 Jun 2 '11 at 19:41
Shouldn't that be Regex.Replace(XML, @"\s+", "")? – Jan-Peter Vos Jun 2 '11 at 19:46
show 3 more comments

Try the replace method of the string in C#.

xyz.Replace("  ", string.empty);
share|improve this answer
1  
Doesn't remove tabs or newlines. If I do multiple removes now I'm making multiple passes over the string. – Corey Ogburn Jun 2 '11 at 19:45

Here is a simple linear alternative to the RegEx solution. Not sure which is faster, you'd have to benchmark it.

static string RemoveWhitespace(string input)
{
    StringBuilder output = new StringBuilder(input.Length);

    for (int index = 0; index < input.Length; index++)
    {
        if (!Char.IsWhiteSpace(input, index))
        {
            output.Append(input[index]);
        }
    }

    return output.ToString();
}
share|improve this answer

I have an alternative way without regexp and seem to perform pretty good. It is a continuation on Brandon Moretz answer:

 public static string RemoveWhitespace(this string input)
 {
    return new string(input.ToCharArray()
        .Where(c => !Char.IsWhiteSpace(c))
        .ToArray());
 }

I tested it in a simple unit test:

[Test]
[TestCase("123 123 1adc \n 222", "1231231adc222")]
public void RemoveWhiteSpace1(string input, string expected)
{
    string s = null;
    for (int i = 0; i < 1000000; i++)
    {
        s = input.RemoveWhitespace();
    }
    Assert.AreEqual(expected, s);
}

[Test]
[TestCase("123 123 1adc \n 222", "1231231adc222")]
public void RemoveWhiteSpace2(string input, string expected)
{
    string s = null;
    for (int i = 0; i < 1000000; i++)
    {
        s = Regex.Replace(input, @"\s+", "");
    }
    Assert.AreEqual(expected, s);
}

For 1000000 attempts the first option (without regexp) runs in less then a second ( 700ms on my machine) and the second takes 3.5 seconds.

share|improve this answer

I assume your XML response looks like this:

var xml = @"<names>
                <name>
                    foo
                </name>
                <name>
                    bar
                </name>
            </names>";

The best way to process XML is to use an XML parser, such as LINQ to XML:

var doc = XDocument.Parse(xml);

var containsFoo = doc.Root
                     .Elements("name")
                     .Any(e => ((string)e).Trim() == "foo");
share|improve this answer
Once I verify that a particular <name> tag has the proper value, I'm done. Wouldn't parsing the document have some overhead? – Corey Ogburn Jun 2 '11 at 19:42
1  
Sure, it has some overhead. But it has the benefit of being correct. A solution based e.g. on regex is much more difficult to get right. If you determine that a LINQ to XML solution is too slow, you can always replace it with something faster. But you should avoid hunting for the most efficient implementation before you know that the correct one is too slow. – dtb Jun 2 '11 at 19:45
This is going to be running in my employer's backend servers. Lightweight is what I'm looking for. I don't want something that "just works" but is optimal. – Corey Ogburn Jun 2 '11 at 19:47
LINQ to XML is one of the most lightweight ways to correctly work with XML in .NET – dtb Jun 2 '11 at 19:49

We can use System.Linq and we can do it in one line:

string text = "My text with white spaces...";
text = new string(text.ToList().Where(c => c != ' ').ToArray());
share|improve this answer
1  
This doesn't seem as optimal as the accepted answer – emartel Nov 21 '12 at 15:42
That only removes spaces. Whitespace != spaces. – ProfK Jan 23 at 9:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.