Top "Spaces" questions

The space character, `U+0020`, used to separate words/tokens in most natural and programming languages.

Remove Unicode characters from textfiles - sed , other Bash/shell methods

How do I remove Unicode characters from a bunch of text files in the terminal? I've tried this, but it …

bash unicode sed text-files spaces
Linux - Replacing spaces in the file names

I have a number of files in a folder, and I want to replace every space character in all file …

linux replace command filenames spaces
using fstream to read every character including spaces and newline

I wanted to use fstream to read a txt file. I am using inFile >> characterToConvert, but the problem …

c++ newline spaces fstream
Alternatives to " " for creating strings containing multiple whitespace characters

I'm wondering if there's a more OO way of creating spaces in C#. Literally Space Code! I currently have tabs += …

c# string spaces
Bash variables with spaces

I'm facing the next problem in MinGW shell under windows. I have in my /etc/profile the expression: export GIT_…

bash variables spaces
Javascript to remove spaces from a textbox value

I've searched around for this a lot and can't find a specific example of what I'm trying to do. Basically …

javascript whitespace spaces
Can you make valid Makefiles without tab characters?

target: dependencies command1 command2 On my system (Mac OS X), make seems to require that that Makefiles have a tab …

makefile tabs whitespace spaces
Adding spaces in multiple lines simultaneously - in Pycharm

I have a very simple question which I can not resolve. I am new to Pycharm and Python and I …

formatting indentation pycharm spaces
How do I replace tabs with spaces within variables in PHP?

$data contains tabs, leading spaces and multiple spaces. I wish to replace all tabs with a space. Multiple spaces with …

php replace tabs spaces
Removing spaces at the end of a string in java

Possible Duplicate: Strip Leading and Trailing Spaces From Java String When I import data to an application I need to …

java string spaces