Tagged Questions
The spaces tag has no wiki summary.
146
votes
11answers
77k views
Notepad++ tabs to spaces
Does anyone know how to convert tabs to spaces in Notepad++? I found a webpage that suggests it's possible (http://www.texteditors.info/notepad-replacements-compared.php) but I couldn't find any ...
96
votes
4answers
50k views
Tab key == 4 spaces and auto-indent after curly braces in VIM
How do I make Vi-Vim never use tabs (converting spaces to tabs, bad!), makes the tab key == 4 spaces, and automatically indent code after curly brace blocks like emacs does?
Also, how do I save these ...
53
votes
18answers
17k views
Tabs versus spaces in Python programming
I have always used tabs for indentation when I do Python programming. But then I came across a question here on SO where someone pointed out that most Python programmers use spaces instead of tabs to ...
25
votes
5answers
16k views
How to setup VIM autoindentation properly for editing Python files - *.py
I've troubles setting VIM (7.1.xxx) for editing python files.
Indenting seems to be broken (optimal 4 spaces).
I've followed some tutorials I found via Google. Still no effect :/
Please help.
22
votes
4answers
3k views
OSX Lion AppleScript : How to get current space # from mission control?
I'm trying to figure out how to get the current space # from mission control. Source would be helpful, but more helpful would be info on how to figure this out myself. I've written a few ...
20
votes
4answers
391 views
Just a little recursion problem (java)
I'm currently just working my way through some recursion problems, and I am currently stuck on one.
The problem is to recursivly insert spaces into a string, into every single possible location, such ...
15
votes
4answers
16k views
How to run exe in powershell with parameters with spaces and quotes
How do you run this command in powershell:
C:\Program Files\IIS\Microsoft Web Deploy\msdeploy.exe -verb:sync -source:dbfullsql="Data Source=mysource;Integrated Security=false;User ...
13
votes
3answers
7k views
Show SOME invisible/whitespace characters in Eclipse
A long while back I transitioned to doing all my web application development in Eclipse from BBEdit. But I miss one little feature from BBEdit. I used to be able to show invisible characters like tabs ...
11
votes
10answers
22k views
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 is that this omits any spaces and newline.
I am writing an encryption program so i need to ...
10
votes
4answers
162 views
Trim values before inserting into DB? — Rails 3.1
What's the simplest way to make sure models trim leading and trailing white space from string values.
One inconvenient way seems to be a before_save filter -- although for something as common as ...
6
votes
2answers
2k views
Objective C - Trim spaces from end of a string
i need to remove spaces from the end of a string. How can i do that?
Example : if string is "Hello " it must become "Hello"
Thanks
6
votes
3answers
818 views
Git Merge and Fixing Mixed Spaces and Tabs with two Branches
I've gone through some similar SOQ's and have not seen an adequate solution for this case.
I've noticed that in many files there is a dirty mix of tabs and spaces used for indenting. The coding ...
6
votes
2answers
1k views
How can I programatically move one Terminal.app window to another space?
If I have several OS-X Terminal.app windows open, how can I move one Terminal window to another space?
I'm happy to use any scripting or programming language to achieve this, but would prefer ...
6
votes
4answers
871 views
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 character preceding the the content of each command line, or it throws a ...
6
votes
7answers
11k views
Echo spaces in bash script
How do I echo one or more tab characters using a bash script?
When I run this code
res=' 'x # res = "\t\tx"
echo '['$res']' # expect [\t\tx]
I get this
res=[ x] # that is [<space>x]
5
votes
2answers
271 views
REGEX To accept numbers separated by commas, but number range is 0-32767
I need to write a regular expression for taking input like this
23,456,22,1,32767
i.e.
No commas allowed at the start or end.
Spaces may come before and/or start of comma for e.g. 23, 45,56 ,67 ...
5
votes
4answers
609 views
How to strip all whitespace from string
How do I strip all the spaces in a python string? For example, I want a string like strip my spaces to be turned into stripmyspaces, but I cannot seem to accomplish that with strip():
>>> ...
5
votes
10answers
1k views
Space code in C#
Not literally code from space however:
I'm wondering if there's a more OO way if creating spaces in C#.
I currently have tabs += new String(' '); and I can't help but feel that this is somewhat ...
4
votes
2answers
441 views
Prevent spaces in a MaskedTextbox
How can I prevent spaces in a maskedtextbox? Used KeyPress but the e.handled doesnt work. Can somebody direct me to a post that shows how to handle this? The masked textbox is used for ssn.
Thanks
4
votes
2answers
621 views
Convert non-breaking spaces to spaces in Ruby
I have cases where user-entered data from an html textarea or input is sometimes sent with \u00a0 (non-breaking spaces) instead of spaces when encoded as utf-8 json.
I believe that to be a bug in ...
4
votes
2answers
542 views
Add spaces to the end of some Bash autocomplete options, but not to others?
I'm trying to create a Bash completion script for a Java program. A typical invocation of that program might look like this:
$ javaProgram -Dproperty=foo option1 option2
Part of my script will be ...
4
votes
2answers
2k views
spaces in my wix source path
wxs file the File tag Source attribute, the path has a spaces in it.
<File Id="_uploads.UserImport.EDS_UserImport.xls" Name="EDS_UserImport.xls" Source="C:\**Documents and ...
4
votes
6answers
6k views
Regular Expression in C# for Last Name that includes internal space
I'd like a Regular Expression for C# that matches "Johnson", "Del Sol", or "Del La Range"; in other words, it should match words with spaces in the middle but no space at the start or at the end.
4
votes
12answers
5k views
Why do multiple spaces in an HTML file show up as single spaces in the browser?
I have long recognized that any set of whitespace in an HTML file will only be displayed as a single space. For instance, this:
<p>Hello. Hello. Hello. Hello. ...
3
votes
4answers
75 views
How to search and replace a text that has spaces before the text?
I have a code that search if a line begin with a specified word and if it does, it changes that whole line with a specified input. However, it doesn't work for some lines if the line is indented by ...
3
votes
2answers
317 views
Moving a Window to a New Space in Mission Control
I would like to write a small utility that moves a window from one space to another in OS X Lion. I don't care if the utility is written in AppleScript or Objective-C. What I can't seem to figure ...
3
votes
2answers
206 views
batch file: pass parameter with white spaces to function
I am using a batch file for backups. I pass the options to a function which calls the packaging executable. This works unless the parameters contain whitespaces. This is the relevant code:
SET ...
3
votes
4answers
191 views
What's wrong with putting spaces in $_GET variables
If I for example have my url looking like index.php?category=IT%20&%20Soft. Then i try to print "$_GET[category]" i only get "IT" and not "IT & Soft". What the hell is wrong here?It's ...
3
votes
1answer
138 views
How do I get the number of Spaces in OSX?
I want the number of Spaces in OSX snow leopard.
If I use 4 spaces, I want that number 4!
I can't find a function or a class related with that.
3
votes
3answers
631 views
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 the string is large. Any ideas?
3
votes
2answers
1k views
Running an exe using powershell from a directory with spaces in it
I'm trying to run MSTest.exe from C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE. What's more, I'm taking all of the assemblies in my current directory and setting them as separate ...
3
votes
2answers
1k views
CKEditor remove spaces/tabs from between headings
CKEditor does this whenever I add a heading tag:
<h2>
Mai 2010</h2>
How can I remove the new line and spaces after the h2 starting tag, please?
3
votes
1answer
769 views
Writing a custom bash-completion rule
I have directories full of files with the same prefix, which I want to be able to quickly open in vim. For example, I might have:
$ ls *
bar:
bar_10 bar_20 bar_30
foo:
foo_10 foo_20 foo_30
...
3
votes
2answers
588 views
How to correctly calculate address spaces?
Below is an example of a question given on my last test in a Computer Engineering course. Anyone mind explaining to me how to get the start/end addresses of each? I have listed the correct answers ...
3
votes
4answers
3k views
How to cin Space in c++?
Say we have a code:
int main()
{
char a[10];
for(int i = 0; i < 10; i++)
{
cin>>a[i];
if(a[i] == ' ')
cout<<"It is a space!!!"<<endl;
}
...
3
votes
1answer
489 views
Windows Batch Scripting Issue - Quoting Variables containing spaces
So here's my issue:
I want to use %cd% so a user can execute a script anywhere they want to place it, but if %cd% contains spaces, then it will fail (regardless of quotes). If I hardcode the path, it ...
3
votes
4answers
429 views
what is the kind of spaces in java?
what is difference of below operators for spaces?
\t, \n, \x0B, \f and \r.
3
votes
4answers
4k views
How to strip all spaces out of a string in php?
How can i strip / remove all spaces of a string in PHP?
Say i have a string like $string = "this is my string";
the output should be like "thisismystring"
How can i do that?
3
votes
6answers
681 views
Python's interpretation of tabs and spaces to indent
I decided, that I learn a bit of Python. The first introduction says that it uses indentation to group statements. While the best habit is clearly to use just one of these what happens if I ...
3
votes
4answers
684 views
How to display tabs as 4 spaces in gnome-terminal
Actually gnome-terminal display tabs as 8 spaces, and this is very annoying when you cat files or view diffs, is there some way to change this permanently?
3
votes
1answer
78 views
TOpenDialog And Spaces
I have a project on Lazarus that I want to compile a source using gcc, for this I have a TOpenDialog called OpenDialog1 and a TProcess called AProcess.
I call gcc with this code:
procedure ...
3
votes
6answers
4k views
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.avi
and it's obviously not liking the fact the path has spaces in it, erroring like so:
...
3
votes
2answers
1k views
Insert spaces instead of TAB in Emacs viper-mode
I am long time-vim user and recently discovered that emacs has viper-mode, offering best of both worlds (at least for me). However one thing is really bothering me since I am mostly coding in python ...
2
votes
4answers
143 views
Remove unicode characters from textfiles - sed , other bash/shell methods
How do I remove unicode characters from a bunch of text files on the terminal?
I've tried this but it didn't work:
sed 'g/\u'U+200E'//' -i *.txt
I need to remove these unicodes from the textfiles
...
2
votes
2answers
120 views
MVC 3 - Slashes and spaces in route
I have the following route defined in my Global.asax (MVC 3 web project):
routes.MapRoute(
"BlogCategory", // Route name
"Blog/Category/{*category}", // URL with ...
2
votes
0answers
49 views
NSWindow with NSWindowCollectionBehaviorStationary is visible on the Dashboard. Is this a bug?
I'm trying to get my NSWindow to:
Be visible on all Spaces
Be visible when showing the Desktop (by pressing F11)
Not be visible in Mission Control/Expose
The following does exactly that, but with ...
2
votes
3answers
70 views
What are the rules for spaces in Ruby?
a = [2,4,5]
a.count-1 => 2
a.count - 1 => 2
But
a.count -1 => 0
What causes this behavior? Why doesn't it happen if a is an integer (and not an array)?
Also, I have noticed that there ...
2
votes
3answers
143 views
How do I put two spaces after every period in our HTML?
I need there to be two spaces after every period in every sentence in our entire site (don't ask).
One way to do it is to embark on manually adding a   after every single period. ...
2
votes
2answers
161 views
Edit flat file to have a specific number of characters on each line?
I would like to create a batch file that converts every line in a flat file to e specific amount of characters (add spaces at the end of every row).
Example:
I have a text file called "text.txt", and ...
2
votes
1answer
212 views
Bash variables with spaces
I'm facing the next problem in MinGW shell under windows. I have in my /etc/profile the next expression:
export GIT_SSH="/c/Program Files/TortoiseGit/bin/TortoisePlink.exe"
This doesn't work when I ...