3
votes
7answers
106 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 …
9
votes
4answers
737 views
How to auto-remove trailing whitespace in Eclipse?
Hello,
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 AnyEd …
0
votes
2answers
38 views
Stripping whitespace from a JavaScript “copy-clipboard” function for Chrome/Safari
I've got a copy-clipboard icon on a website, which, when clicked, invokes the following JavaScript (among other):
var hasInnerText = (document.getElementsByTagName("body")[0].inne …
1
vote
5answers
51 views
VB/VBA Variable Declaration Coding Standard - White Space
What is the significance of declaring variables in VB/VBA like so:
Private m_sName As String
Private m_lAge As Long
As opposed to;
Private m_sName As String
Pr …
0
votes
3answers
39 views
how to make svn diff show only non-whitespace line changes between two revisions
I can get diffs between two revisions using something like
svn diff -r 100:200 > file.diff
But the problem is that there are many lines that show up due to change in whitesp …
1
vote
5answers
71 views
How do I prevent HTML source formatting from affecting output?
It looks like extra line breaks in the HTML code may add unwanted spaces in the final output. I always thought that no matter how I layout my HTML code, it will not affect the way …
0
votes
5answers
74 views
Checking string for whitespace
Is there a way I can check for whitespace?For example, I DO NOT want to check for whitespace such as this...
$string = "The dog ran away!"; and have it output Thedogranaway!
I wa …
0
votes
3answers
19 views
Unwanted vertical space after Flash object
See the code below:
<div>Lorem ipsum dolor sit amet</div>
<object
type="application/x-shockwave-flash"
data="banner.swf"
width=" …
0
votes
4answers
228 views
Remove Whitespace From XML Nodes
How can I remove whitespace on every instance of a particular node which I specify in C#? For example let's say that I have the following XML document:
<XML_Doc>
<Reco …
1
vote
2answers
68 views
Cakephp generating xml error - blank space
Hi,
I am trying to generate a dynamic xml document in CakePHP to output to the browser.
Here is my controller code:
Configure::write ('debug', 0);
$this->layout = null;
heade …
7
votes
12answers
2k 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.
3
votes
13answers
303 views
Stylistic Question: Use of White Space
I have a particularly stupid insecurity about the aesthetics of my code... my use of white space is, frankly, awkward. My code looks like a geek dancing; not quite frightening, bu …
1
vote
2answers
75 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>< …
1
vote
3answers
47 views
How do I manage optional whitespace in ANTLR?
I am trying to parse a data file in ANTLR - it has optional whitespace exemplified by
3 6
97 12
15 18
The following shows where the line starts and ends are. There is a ne …
4
votes
4answers
112 views
Unidentified whitespace character in Java
Hi,
On extracting some html from a web page, I have some elements containing text that end in an unknown or non-matching whitespace character (ie does not match "\\s"):
<span& …
