Top "Spaces" questions

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

C# - Easiest way to parse filename with spaces eg. "C:\Test\File with spaces.txt"

I am trying to pass a full file path to FFMPEG. C:\TestFolder\Input\Friends - Season 6 - Gag Reel.…

c# string filenames spaces
How can I read a string with spaces in it in C?

scanf("%s",str) won't do it. It will stop reading at the first space. gets(str) doesn't work either when …

c string spaces
json fieldnames spaces

I've such a json structure: info: { First Name: "Robert", Last Name: "Smith" } I'm tring to point to data with javascript …

javascript json spaces
Notepad++ Tab Settings

See Convert tabs to spaces in Notepad++ I have started on a personal quest to learn python and after following …

python editor notepad++ spaces tabbing
Remove empty lines from txtfiles, remove spaces from start and end of line

Which one would be better: sed -e '/^$/d' *.txt sed 'g/^$/d' -i *.txt Also, how do I remove …

bash sed text-files spaces replace
Runtime.exec on argument containing multiple spaces

Can anyone make the following run? public class ExecTest { public static void main(String[] args) { try { //Notice the multiple spaces …

java runtime exec spaces
Javascript window.open url with spaces and %

I'm trying window.open with a url with spaces: var msg = 'Hello, world!'; var url = 'http://yoursite.com'; var …

javascript escaping spaces window.open
How to replace custom tabs with spaces in a string, depend on the size of the tab?

I'm trying to write a python function not using any modules that will take a string that has tabs and …

python whitespace spaces tabstop
Why does the cmd.exe shell on Windows fail with paths using a forward-slash ('/'') path separator?

Just when I'd thought I'd seen it all with Windows path issues, I've now encountered a case that only fails …

windows path cmd spaces path-separator
Remove excess white space from string

I want to remove the excess white spaces using VB.net ex. "The Quick Brown Fox" I want output "The …

vb.net spaces