Efficient way to remove ALL whitespace from String?

Corey Ogburn

I'm calling a REST API and am 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. I am mostly just concerned about speed.

slandau

This is fastest way I know of, even though you said you didn't want to use regular expressions:

Regex.Replace(XML, @"\s+", "")

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

Remove all whitespace from string

From Java

Remove all whitespace in a string

From Dev

Efficient way to remove all entries from mongodb

From Dev

How can I remove all whitespace from string?

From Dev

Remove whitespace from part of a string

From Dev

efficient way to remove a list of string from a big vector

From Dev

Most efficient way to remove multiple substrings from string?

From Dev

Most efficient way to remove punctuation marks from string in c++

From Dev

Is there a way to remove all spaces from a string? javascript

From Dev

Strip all whitespace from a string

From Dev

Efficient way to get all substrings from a string that contains special characters

From Dev

Remove shortest leading whitespace from all lines

From Dev

Remove whitespace from all array elements

From Dev

Postgresql - remove any whitespace from sub string

From Dev

How to remove whitespace from string in Ruby

From Dev

PHP - Unable to remove whitespace from string

From Dev

How to remove whitespace from end of string in Python?

From Dev

Remove special characters from a string except whitespace

From Dev

PHP - Unable to remove whitespace from string

From Dev

Python: How to remove whitespace from number in a string

From Dev

How to remove leading whitespace from a string in Bash

From Dev

How do I remove all excess whitespace from an XML string using ColdFusion?

From Dev

Removing all whitespace from a string in Ruby

From Dev

Is there a way to remove all this awful whitespace in MS Project 2013?

From Dev

Most Efficient Way to "Slurp" All of STDIN Into a String

From Dev

Most efficient way to print all variations of a String?

From Java

Remove multiple keys from Map in efficient way?

From Dev

Most efficient way to remove duplicates from a List

From Dev

How can I remove all whitespace from a string except when part of said string is surrounded by a specific character in Node?

Related Related

  1. 1

    Remove all whitespace from string

  2. 2

    Remove all whitespace in a string

  3. 3

    Efficient way to remove all entries from mongodb

  4. 4

    How can I remove all whitespace from string?

  5. 5

    Remove whitespace from part of a string

  6. 6

    efficient way to remove a list of string from a big vector

  7. 7

    Most efficient way to remove multiple substrings from string?

  8. 8

    Most efficient way to remove punctuation marks from string in c++

  9. 9

    Is there a way to remove all spaces from a string? javascript

  10. 10

    Strip all whitespace from a string

  11. 11

    Efficient way to get all substrings from a string that contains special characters

  12. 12

    Remove shortest leading whitespace from all lines

  13. 13

    Remove whitespace from all array elements

  14. 14

    Postgresql - remove any whitespace from sub string

  15. 15

    How to remove whitespace from string in Ruby

  16. 16

    PHP - Unable to remove whitespace from string

  17. 17

    How to remove whitespace from end of string in Python?

  18. 18

    Remove special characters from a string except whitespace

  19. 19

    PHP - Unable to remove whitespace from string

  20. 20

    Python: How to remove whitespace from number in a string

  21. 21

    How to remove leading whitespace from a string in Bash

  22. 22

    How do I remove all excess whitespace from an XML string using ColdFusion?

  23. 23

    Removing all whitespace from a string in Ruby

  24. 24

    Is there a way to remove all this awful whitespace in MS Project 2013?

  25. 25

    Most Efficient Way to "Slurp" All of STDIN Into a String

  26. 26

    Most efficient way to print all variations of a String?

  27. 27

    Remove multiple keys from Map in efficient way?

  28. 28

    Most efficient way to remove duplicates from a List

  29. 29

    How can I remove all whitespace from a string except when part of said string is surrounded by a specific character in Node?

HotTag

Archive