Whitespace, or white space, is often used to refer to any combination of spaces, tabs, and new lines which create blank space between text, either horizontally or vertically.

learn more… | top users | synonyms

2
votes
1answer
35 views

jquery. get text() to preserve blanks/spaces

How do I get jquery text() to preserve blanks? I want $("#ele").text("a a"); to actually show up with the spaces in between. I have created a jsfiddle to illustrate the problem. ...
0
votes
2answers
13 views

Escaping Variable white space

I got a html table and I'm retrieving the value of a cell with: var orderid = document.getElementById("orderid"+row).innerText; The value of the cell is an orderid for example 10234. However when I ...
0
votes
1answer
11 views

How to copy files. iterating whitespace directories - batch

Hello i want to create a batch file that copies the files from the current directory to another. for /F "usebackq" %%b IN (`DIR /B /S ""`) DO @( XCOPY %%b %1 ) So Far so good. MY problem are ...
-1
votes
2answers
31 views

What is this strange whitespace in SublimeText

In SublimeText2, some of my whitespace behaves strangely. For example, I I select the contents of a script (as shown in the screenshot below), and do shift+tab (to reduce indentation) it only works ...
1
vote
1answer
28 views

What does git commit --cleanup=whitespace do exactly?

What does 'git commit --cleanup=whitespace' do? I'm trying to test it out but I cannot figure out what the expected behaviour is (and its git documentation on it is just one line). If I add it, and ...
0
votes
1answer
16 views

Highcharts white space between grouped bars

I'd like to know if this is possible? I want to group certain bars by adding white spacers. In my Google Spreadsheet I add an empty row, but then Highcharts renders a row number as category. The ...
0
votes
1answer
38 views

Whitespace in pyplot legend entry?

I want to add some spacing between the end of the legend entry and the legend border. I've tried using the arguments for pyplot.legend but I haven't found a combination that works. Here's a minimal ...
0
votes
3answers
38 views

Using whitespace in Ruby code (the ternary operator)

Considering this piece of code: values = ["one", "two", "", "four"] values.each do |value| puts value.empty? ? "emptyness" : "#{value} is #{value.length}" end is it possible in Ruby 1.8.7 to ...
2
votes
2answers
87 views

C++ output duplicating lines when there is a '\n'

I'm having some trouble with this member function of a class. Basically, it's meant to translate words to a different language while maintaining the same punctuation and spaces. lineToTranslate is an ...
5
votes
7answers
97 views

How do I generate all possible combinations of a string with spaces between the characters? Python

How do I generate all possible combinations of a string with spaces between the characters? [in]: "foobar" [out]: ['foobar', 'f oobar', 'fo obar', 'f o obar', 'foo bar', 'f oo bar', 'fo o bar', ...
0
votes
2answers
43 views

Prevent automatic line breaks in a <code> tag

I have a html code tag, wrapped in in a pre tag with fixed width and am getting ugly automatic line breaks: What I want to achieve is, that the text is NOT automatically broken on spaces, but when ...
0
votes
1answer
26 views

Weird whitespace border around entire site

I've only just started to get this, but any web development I do (wordpress, simple html) has this whitespace border around the entire site. This (I quickly did it for testing): ...
1
vote
1answer
37 views

Formatting generic page content with white-space:pre-wrap - any reason not to?

Lets say, that I have a web-page with this element as the main content: <div id="maincontent"> <h2>Sub-header</h2> <p>Some stuff.</p> <p>More ...
1
vote
1answer
30 views

Replace white space%20 white - in search url

I tried a lot of code without results. I'm using wordpress and the url of search results is: http://mysite.com/search/the%20search%20query%20 I need to change it in ...
0
votes
0answers
22 views

How can I merge whitespace diffs from file B to file A?

I want to merge whitespace diffs from file B to file A, but not merge non whitespace diffs as I want to navigate through them and examine one by one? Is this possible?
-1
votes
0answers
49 views

Have you already seen the class PKT_ENABLED? [closed]

I'm getting crazy. A mysterious class (PKT_ENABLED) appears in my <body>, as well as unwanted content (this content is just white space, but it ruins my design). And that space or that class ...
1
vote
2answers
58 views

I don't understand how to use the lexeme function

From Text.Parsec.Token: lexeme p = do { x <- p; whiteSpace; return x } It appears that lexeme takes a parser p and delivers a parser that has the same behavior as p, except that it also skips ...
0
votes
1answer
41 views

Substituting an element with whitespace. ( Perl Regex )

I am trying to substitute any \n\ character with whitespace, but somehow \s isn't recognised as a whitespace substitution character. $match_to_array =~ s/\n/\s/;
3
votes
1answer
37 views

Why is f(arg, superfluous_arg) an ArgumentError but f (arg, superfluous_arg) a SyntaxError?

In Ruby 1.9.3, I have a function with a single argument. If I call it correctly, it works either with or without whitespace separating its name and parenthesis. If I pass an extra argument, it fails ...
1
vote
2answers
49 views

Whitespace at the end of the HTML

I am trying to do a dynamic grid layout with links to other pages, consisting of a picture and a text. The problem is that I don't seem to find any way of introducing a whitespace (padding/margin) ...
-1
votes
2answers
25 views

ANTLRWorks, whitespaces, memory leaks, and crashing

I wanted to try this tool, antlr, so that I could eventually arrive to parse some code and refactor it. I tried some small grammars, everything was ok, so I took the next step and started parsing a ...
-1
votes
0answers
29 views

ffmpeg, built for android unable to read input with spaces [closed]

I have been working on an android multimedia application, where i'm using ff-mpeg 0.11.1 (code name: Love). Ff-mpeg 0.11.1 has been built according to the guardian project. This project is working ...
-1
votes
3answers
41 views

Display white spaces that precede the content of the line of the file - PHP

I'm currently using foreach loop to display the contents of a text file. However, I want to also display the whitespaces that precede the actual content of the line. How to do so? $loop_var = 0; ...
0
votes
1answer
32 views

How to replace whitespace with and operator in solr query

I have implemented solr search o my site. When I search the query "Red Shoes", it is showing results for both Red and shoes. But I wants solr to show those records which contains both keywords "Red" ...
1
vote
2answers
66 views

Java Replace whitespace

No matter what I seem to try, replacing the white space with an input of 2x= -3 will result in the string being truncated to just 2x=. public void parseEquation(String x){ String adf = x; ...
0
votes
1answer
46 views

Forcing whitespace in Bash arrays being passed into grep

I have a pretty simple bash script that should grep a file for multiple phrases that I want to flag. It works up until a point, but I am falling over when I want to grep for ' print ' or ' puts ' ...
0
votes
2answers
45 views

php: removing certain character  after detecting string with space/whitespace in the front using regex

I am currently trying out on a web crawler and faced this problem with regex. The characters i want to store from the string below is "09:00 AM" : <td style="border: #080707 1px solid;" ...
0
votes
0answers
37 views

Is there a way to remove the newline created between an NSMutableDictionary key/object pair when writing to a file?

I'm trying to make the entries in my NSMutableDictionary look like this when written to a file: <dict> <key>Track ID</key><integer>686</integer> ...
0
votes
5answers
100 views

C programming language (scanf)

I have read strings with spaces in them using the following scanf() statement. scanf("%[^\n]", &stringVariableName); What is the meaning of the control string [^\n]? Is is okay way to read ...
0
votes
1answer
47 views

Why does php include statement return whitespace as ajax response

An example of my question in the title demonstrates the problem I'm having. example sorry don't know how to use jsfiddle. And how do I fix it?
0
votes
1answer
50 views

Regular expression to replace line feeds with a space only if the break is in certain keyword pair

I'm trying to write a regular expression that replaces line feeds between certain areas of a text file, but only on certain keywords (beginning keyword and end keyword are not paired) but not having ...
0
votes
3answers
59 views

How can I get rid of curly braces when using white space in python with tkinter?

I am trying to write a tkinter program that prints out times tables. To do this, I have to edit a text widget to put the answer on the screen. All of the sums come up right next to each other with no ...
-1
votes
2answers
23 views

File write unexpected output

I have made this program which copies the text from a file to another file. The result was, original file contents "This is a test" new file contents "This is a test" Which worked, I ...
0
votes
0answers
65 views

Directory with whitespace RUBY

in my ruby-code I want to save some contents in a file. This file should be saved at a directory with whitespace in its path. If the directory doesn't exist I do: Dir.mkdir(directory_name) unless ...
2
votes
4answers
77 views

split() a String to a Stringarray, and not getting a blank at [0]

I'm trying to split() a String with no whitespaces, but getting a blank at [0]. String s = "..1..3.."; String[] result2 = s.split(""); System.out.println(result2[0]); // giving me a blank space I'v ...
1
vote
1answer
51 views

Won´t read whitespace with ifstream

I am relatively new to C++, so be gentle. I have a text-file I want to read, but when i read the file it skips the whitespace (space) between separated words. I tried to take away as much junk-code ...
2
votes
4answers
82 views

Python function to replace tabs with spaces in a string?

I'm new to programming and I'm trying to write a python function not using any modules that will take a string that has tabs and replace the tabs with spaces appropriate for an inputted tabstop size. ...
0
votes
1answer
140 views

remove line breaks and spaces from xml file with vb

I have looked online for a couple days on how to do this. I find small elements of code, but I seem to be missing the larger items. I have a number of xml files that I need to edit out extra spaces ...
4
votes
1answer
59 views

Definition of whitespace in Json

JSON specifies that "Whitespace can be inserted between any pair of tokens." What it does not specify is exactly what whitespace is. Should I read this as "old-fashioned ASCII whitespace" or "the ...
0
votes
2answers
85 views

DB2 update - remove all characters after white space

Select Substr(<<COLUMN NAME>>, 1,(PosStr(<<COLUMNNAME>>, ' ') -1)) From <<TABLE NAME>>; This statement here helps remove the white space, and all characters ...
1
vote
1answer
60 views

Fortran: odd space-padding string behavior when opening files

I have a Fortran program which reads data from a bunch of input files. The first file contains, among other things, the names of three other files that I will read from, specified in the input file ...
0
votes
1answer
34 views

How to delete line from php file as well as the newline that goes with it?

I want to delete the line from a file that contains the string $snum. I got it to work, but it leaves a newline behind. How can I get rid of it? I tried the trim function below but it doesn't work. ...
-1
votes
1answer
56 views

PHP Parsing error: “Parse Error received on unexpected T_ENCAPSED AND WHITESPACE.” [closed]

I am receiving a PHP Error: Parse Error received on unexpected T_ENCAPSED AND WHITESPACE. The line: ($insert .= "($POST...) is the one that is generates the error. (string)$insert; ...
1
vote
2answers
26 views

Wordpress extra spaces breaks layout

I am creating and developing a custom Wordpress theme and I am struggling with one issue, which is making me crazy and I can't find any fix and can't figure out, what I am doing wrong... There is ...
0
votes
2answers
47 views

Dealing with HTML whitespace [duplicate]

I wondered if there is any technique that can be used to remove whitespace displaying in the browser without sacrificing readability of HTML. For example, putting HTML on different lines (easier to ...
0
votes
1answer
107 views

How to ignore whitespaces and new line feeds while parsing a XML file

how can I ignore whitespaces while parsing a XML file. It always calls the characters(...) method again, while after the end element a '\n' or '\r' is following, so it calls this method twice, instead ...
-3
votes
3answers
69 views

Why does not Java Character.isSpaceChar(char) reckon horizontal tab as a whitespace? [closed]

Why does Character.isSpaceChar('\u0009') in Java 1.7 return false? This character is also known as '\t' or in string based english: "horizontal tab". According to my eyes and Wikipedia alike, this ...
0
votes
3answers
93 views

Catching errors in text file lines, skipping and reporting

I have a text file that I need to read and each line is an IP, a URL, and finally a date, all separated by white spaces. I want to get each piece of information assigned to the appropriate variable of ...
0
votes
0answers
25 views

Space between a #class and a #div only showing up in Chrome (not Firefox nor Internet Explorer)

This is my first post in SO and one of my very first attempts at web design, so please bear in mind my newbieness...or noobness, whichever it is :-) I've been playing around with a free blogger ...
-1
votes
2answers
39 views

Regular expression which accepts 'whitespace' character as well

This is my regular expression. But it does not accept white space. How to modify it so that it will accept white space in the middle or end but should not accept only white spaces. ...

1 2 3 4 5 28