How do i remove all white spaces from a string?

Doron Muzar

I have this code:

if (TextParsingConfiguration.join == true)
                {
                    images = images.Trim(' ');
                }
                if (TextParsingConfiguration.removecommas == true)
                {
                    images = ReplacingChars(images, new[] { ',', '"' }, " ");
                }

join and removecommas are bool variables im using them also in form1 in checkBoxes. And the ReplacingChars method:

public static string ReplacingChars(string source, char[] toReplace, string withThis)
        {
            return string.Join(withThis, source.Split(toReplace, StringSplitOptions.None));
        }

Maybe im wrong here with the logic but i wanted to give the user two options.

  1. to remove all Remove commas and Quotation marks this the removecommas bool variable.
  2. to join meaning to remove all the whit spaces but not the commas and Quotation marks just remove/delete the white spaces so the whole text will be like a block of text.

The question if number 2 is logic at all ? And if not what other options to remove(clean) i can make ? The removecommas is working. Its removing commas and Quotation marks and leave the spaces as it was.

Monika

Try this :

   images= images.Replace(" ", String.Empty);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

JavaScript: how do I remove all the white spaces from a JSON string except the ones in the values?

From Dev

How can I remove all white spaces?

From Dev

How to remove white spaces from String in Arduino?

From Dev

How to remove white spaces from a string in Python?

From Java

How should I remove all the leading spaces from a string? - swift

From Dev

Remove all white-spaces in string with jQuery

From Dev

How do I remove extra white spaces between sentences in Ruby?

From Dev

Blade and JavaScript - How to remove white spaces from string inside attributes

From Dev

How to remove the unwanted character like white spaces and newline from a string

From Dev

I want to remove all white spaces

From Dev

How do i remove all trailing space from word(both front and end white space) in comma seperated string

From Dev

How can I replace all duplicate white spaces in a string with tabs

From Java

Remove ALL white spaces from text

From Dev

How to cut off all the white spaces from String?

From Dev

Remove white spaces from BrightScript string

From Dev

Remove brackets dots and white spaces from string

From Dev

Replace all white spaces and / from a string

From Dev

Remove spaces from javascript string but not all spaces

From Dev

How do I remove all occurrences of a specific char from a string?

From Dev

How can I remove all white parts from an image in Photoshop?

From Dev

Remove all non alphanumeric and any white spaces in string using javascript

From Dev

How to ignore white spaces from a string in Python?

From Dev

How can I remove all string spaces in AngularJS binding?

From Dev

How can I remove all spaces in the beginning of the string?

From Dev

Batch: remove all white spaces from a text file?

From Dev

Batch: remove all white spaces from a text file?

From Dev

How do i remove white border from my code for website?

From Dev

Trim a string to remove white spaces

From Dev

How can I remove all extraneous spaces from a *.docx file?

Related Related

  1. 1

    JavaScript: how do I remove all the white spaces from a JSON string except the ones in the values?

  2. 2

    How can I remove all white spaces?

  3. 3

    How to remove white spaces from String in Arduino?

  4. 4

    How to remove white spaces from a string in Python?

  5. 5

    How should I remove all the leading spaces from a string? - swift

  6. 6

    Remove all white-spaces in string with jQuery

  7. 7

    How do I remove extra white spaces between sentences in Ruby?

  8. 8

    Blade and JavaScript - How to remove white spaces from string inside attributes

  9. 9

    How to remove the unwanted character like white spaces and newline from a string

  10. 10

    I want to remove all white spaces

  11. 11

    How do i remove all trailing space from word(both front and end white space) in comma seperated string

  12. 12

    How can I replace all duplicate white spaces in a string with tabs

  13. 13

    Remove ALL white spaces from text

  14. 14

    How to cut off all the white spaces from String?

  15. 15

    Remove white spaces from BrightScript string

  16. 16

    Remove brackets dots and white spaces from string

  17. 17

    Replace all white spaces and / from a string

  18. 18

    Remove spaces from javascript string but not all spaces

  19. 19

    How do I remove all occurrences of a specific char from a string?

  20. 20

    How can I remove all white parts from an image in Photoshop?

  21. 21

    Remove all non alphanumeric and any white spaces in string using javascript

  22. 22

    How to ignore white spaces from a string in Python?

  23. 23

    How can I remove all string spaces in AngularJS binding?

  24. 24

    How can I remove all spaces in the beginning of the string?

  25. 25

    Batch: remove all white spaces from a text file?

  26. 26

    Batch: remove all white spaces from a text file?

  27. 27

    How do i remove white border from my code for website?

  28. 28

    Trim a string to remove white spaces

  29. 29

    How can I remove all extraneous spaces from a *.docx file?

HotTag

Archive