Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

78
votes
5answers
41k views

How do I change Eclipse to use spaces instead of tabs?

By default Eclipse indents with a hard tab character. How do I change it to spaces?
65
votes
10answers
18k views

How to auto-remove trailing whitespace in Eclipse?

The question has two parts, one of which I already have the answer for. How to auto-remove trailing whitespace from the entire file being edited? -> Answer: use the AnyEdit plugin, which can be set ...
63
votes
9answers
19k views

Make git automatically remove trailing whitespace before committing

I'm using git with my team and would like to remove whitespace changes from my diffs, logs, merges, etc. I'm assuming that the easiest way to do this would be for git to automatically remove trailing ...
39
votes
11answers
5k views

Ignore whitespace in HTML

Is there anything in HTML/CSS that tells the browser to ignore whitespace completely? So many times when you want to put, say, two images next to each other - you try desperately to keep the HTML ...
39
votes
3answers
53k views

How do I split a string with any whitespace chars as delimiters?

What regex pattern would need to pass to the java.lang.String.split() method to split a string with all whitespace characters (' ', '\t', '\n', etc.) as delimiters?
33
votes
11answers
35k views

How can I escape white space in a bash loop list?

I have a bash shell script that loops through all child directories (but not files) of a certain directory. The problem is that some of the directory names contain spaces. Here are the contents of ...
25
votes
6answers
5k views

Tab Vs Space preferences in Vim

Vim is very accommodating when it comes to tab Vs. space preferences. As I understand it, the tabstop setting indicates the width of a tab character. The shiftwidth setting specifies how many columns ...
25
votes
17answers
25k views

How do I trim leading/trailing whitespace in a standard way?

Is there a clean, preferably standard method of trimming leading and trailing whitespace from a string in C? I'd roll my own, but I would think this is a common problem with an equally common ...
22
votes
4answers
9k views

How do I make Emacs show blank spaces?

How can I make Emacs show blank spaces (like a space, a tab, a line-jump, etc). Many other editors like Kate and Eclipse have this feature and I find it very useful to see when code is indent-broken ...
20
votes
5answers
1k views

Git add only non-whitespace changes

I have my text editor to automatically trim trailing whitespace upon saving a file, and I am contributing to an OpenSource project that has severe problems with trailing whitespace. Every time I try ...
19
votes
4answers
15k views

Converting XML to plain text using XSLT — how should I ignore/handle whitespace in the XSLT?

I'm trying to convert an XML file into the markup used by dokuwiki, using XSLT. This actually works to some degree, but the indentation in the XSL file is getting inserted into the results. At the ...
19
votes
6answers
9k views

How To Removing Trailing Whitespace Of All Files Recursively?

How can you remove all of the trailing whitespace of an entire project? Starting at a root directory, and removing the trailing whitespace from all files in all folders. Also, I want to to be able to ...
16
votes
6answers
204 views

Python: splitting string by all space characters

To split strings by spaces in python, one usually uses split method of the string without parameters: >>> 'a\tb c\nd'.split() ['a', 'b', 'c', 'd'] But yesterday I ran across a string that ...
16
votes
5answers
14k views

Remove whitespace in Python using string.whitespace

Python's string.whitespace is great: >>> string.whitespace '\t\n\x0b\x0c\r ' How do I use this with a string without resorting to manually typing in '\t|\n|... etc for regex? For ...
16
votes
4answers
2k views

Setting Vim whitespace preferences by filetype

At my work, I am required to follow the house style for indentation, which goes as follows: 2 spaces when coding html and ruby tabs when coding javascript, with tabwidth=4 recommended What is the ...
15
votes
5answers
12k views

Strip whitespace from jsp output

How can I strip out extra whitespace from jsp pages' output? Is there a switch I can flip on my web.xml? Is there a Tomcat specific setting?
14
votes
5answers
12k views

How to remove duplicate white spaces in string using Java?

How to remove duplicate white spaces (including tabs, newlines, spaces, etc...) in a string using Java?
13
votes
1answer
162 views

How do Python parsers handle indentation?

When parsing a freeform language like C, it is easy for the parser to determine when several expressions are related to one another simply by looking at the symbols emitted by the parser. For ...
13
votes
7answers
8k views

remove multiple whitespaces in php

I'm getting $row['message'] from my mysql db and I need to remove all whitespaces like \n \t and so on. $row['message'] = 'This is a Text \n and so on \t Text text.'; should be formated to: ...
13
votes
4answers
4k views

Specifying Tab-Width?

Is it possible to define the tab-width when whitespace is displayed (say within a <pre> tag or something)? I can't find anything to do this with CSS, but this seems like it would be a pretty ...
12
votes
3answers
165 views

Experimental research findings on white space (for language design and style guides)?

What does experimental research say about white space in code? Let me be specific: I'm talking about cognitive studies that compare how quickly and effectively people can read and grasp visual ...
12
votes
5answers
534 views

Is there a way to serialize multiple XElements onto the same line?

I'm dealing with the dreaded <Run/> in Silverlight 3 and having to programmatically create a <TextBlock> and its inlines: Why dreaded? Because it doesn't work, I guess, the way you'd ...
12
votes
8answers
4k views

Removing extra whitespace from generated HTML in MVC

I have an MVC application view that is generating quite a large HTML table of values (>20MB). I am compressing the view in the controller using a compression filter internal class CompressFilter : ...
11
votes
9answers
6k views

How to replace multiple white spaces with one white space

Let's say I have a string such as: "Hello how are you doing?" I would like a function that turns multiple spaces into one space. So i would get: "Hello how are you doing?" I know ...
10
votes
4answers
248 views

In Haskell, when do we use in with let?

In the following code, the last phrase i can put a "in" in front. Will it change anything? Another question: If i decide to put "in" in front of the last phrase, do i need to indent it? I tried ...
10
votes
3answers
3k views

Show whitespace characters in gvim

Is there an easy way to display whitespace characters such as space and tab in gvim? Something like what is implemented in Gedit, Geany, Komodo, and other GUI editors where (when the option is turned ...
10
votes
3answers
4k views

git whitespace woes

Conflicts on whitespace suck Whitespace has ended up being a horrible pain for me while using git. git config apply.whitespace=strip seems to highten your chances of getting conflicts (as you ...
9
votes
5answers
518 views

c# Fastest way to remove extra white spaces

What is the fastest way to replace extra white spaces to one white space? e.g. from foo bar to foo bar
9
votes
1answer
2k views

git, whitespace errors, squelching and autocrlf, the definitive answers

Please can you explain about whitespace errors in git, what do they mean, what is 'squelching', and do I need to worry about it? (Running msysgit, but with other users on linux). There is already a ...
9
votes
6answers
391 views

Best way to get ints from a string with whitespace?

I know this is simple, I just can't recall the best way to do this. I have an input like " 5 15 " that defines the x and y of a 2D vector array. I simply need those two numbers into int col and int ...
9
votes
7answers
12k views

How can I check if string contains characters & whitespace, not just whitespace?

What is the best way to check if a string contains only whitespace? The string is allowed to contain characters combined with whitespace, but not just whitespace.
9
votes
2answers
1k views

Scala: XML Whitespace Removal?

Anyone know of a good scala library to do whitespace removal/compaction from XML? <foo> <bar>hello world</bar> <baz> xxx </baz> </foo> to: <foo><bar>hello ...
9
votes
4answers
3k views

Why does git care about trailing whitespace in my files?

What business is it of whatever VCS I'm using to worry about what I put in my files? I don't get what the point here is. Is git version control or syntax checker?
9
votes
10answers
3k views

Emacs Command to Delete Up to Non-Whitespace Character

I often want to make a multiline function call and reduce it down to one line. For example, convert... function_call( 'first_arg', 'second') to function_call('first_arg', 'second') ...
8
votes
5answers
1k views

untabify and remove trailing whitespaces in emacs

I'm working on large scale project where in there are ~100 engineers working on many files. I would like to see if I could add customization in emacs to remove trailing white spaces and untabify the ...
8
votes
5answers
357 views

Using perl to split a line that may contain whitespace

Okay, so I'm using perl to read in a file that contains some general configuration data. This data is organized into headers based on what they mean. An example follows: [vars] # This is how we ...
8
votes
9answers
4k views

Bash script to replace spaces in file names

Can anyone recommend a safe solution to recursively replace spaces with underscores in file and directory names starting from a given root directory? For example, $ tree . |-- a dir | `-- file ...
8
votes
3answers
2k views

Django template and Python dictionary data structure question

I am trying to present a dictionary from my view.py at the HTML template such as: test = { 'works': True, 'this fails':False } and in the template: This works without a problem: {{ test.works }} ...
8
votes
2answers
730 views

Show trailing whitespace on emacs only on non-empty lines

Right now I'm using: (setq show-trailing-whitespace t) In my .emacs to show trailing whitespace for my CC mode. I can't seem to figure out how to have it not show the whitespace font for whitespace ...
8
votes
2answers
3k views

Objective-C tab settings and whitespace style

Apple's Objective-C documentation, references, and generated code seem to be totally inconsistent with their coding style. I can not determine the "preferred" style (if one exists) for Objective-C ...
8
votes
12answers
4k views

Is there a Perl-compatible regular expression to trim whitespace from both sides of a string?

Is there a way to do this in one line? $x =~ s/^\s+//; $x =~ s/\s+$//; In other words, remove all leading and trailing whitespace from a string.
7
votes
1answer
157 views

Mark block based on indentation level in Vim

Is it possible to mark a block in Vim based on the indentation already in place? Similarly to v{ . It would be extremely useful for programming languages with whitespace-sensitive syntax (like ...
7
votes
1answer
156 views

How can I do a merge in Bazaar (bzr merge) that ignores whitespace?

As our team and codebase continue to get bigger, we're seeing more and more cases where Bazaar insists there's a conflict during a merge operation, but in reality it's just a minor whitespace change - ...
7
votes
1answer
2k views

Git diff -w ignore whitespace only at start & end of lines

I love to use git diff -w to ignore whitespace differences. But, I just noticed that it ignores even whitespace differences in the middle of lines. How could I only ignore whitespace differences that ...
7
votes
3answers
212 views

Java and whitespace-as-syntax (ala Python)?

There is a part of java syntax that bugs the crap out of me: that's curly braces and semicolons. Is there some sort of translator that exists that will allow me to use all of the Java syntax except ...
7
votes
5answers
467 views

XSL ignores my whitespace even with the <xsl:text> tag

I'm making a header in my XSL code that includes multiple fields of information, i.e. "Name: Bob Birthdate: January 1 1900," etc. I enclosed them in tags as such: <xsl:text> Gender: Male ...
7
votes
1answer
991 views

How to remove whitespace from XElement object created from XElement.ReadFrom(XmlReader)

I am parsing a large xml file. So I am using an XmlReader in combination with XElement instead of XElement.Load(). I have created as XElement object from XmlReader as shown below and here. static ...
7
votes
7answers
305 views

Use of Vertical Whitespace

My intention in this question is not to be pedantic, but rather to explore an overlooked axis of an important topic (the use of whitespace). Much debate and care has been put into the use of ...
7
votes
1answer
330 views

JavaScript Whitespace Syntax Error

Why does this cause a syntax error for the return statement: var FOO = (function($) { return { init: function() { } } })(jQuery); Whereas this doesn't: ...
7
votes
2answers
740 views

Mercurial diff: ignore trailing whitespace?

I am in the distinctly unfortunate circumstance of working in an environment which worries little of the deep evil known as "trailing whitespace"... But, alas, the enlightened Mercurial persists in ...

1 2 3 4 5 15