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

learn more… | top users | synonyms

0
votes
0answers
13 views

Nginx and rewrite redirection issue

I need some help with this issue. When i type a search on my site, with a single word the url is redirecting correctly but if i search 2 or more words the url is not rewrited and this is because my ...
-4
votes
1answer
36 views

Getline Not Working With Spaces [closed]

when i try to read a full name with cin.getline() the string is cuted after the first space if i write Ray William it just takes " William" withi the space, any idea? string var; cout ...
2
votes
5answers
106 views

Length of string WITHOUT spaces (C#)

Quick little question... I need to count the length of a string, but WITHOUT the spaces inside of it. E.g. for a string like "I am Bob", string.Length would return 8 (6 letters + 2 spaces). I need a ...
0
votes
0answers
11 views

Missing $ inserted - did I make something wrong? [migrated]

Im writing a paper using Latex and I get repeatedly this "! Missing $ inserted. $ l.92 ?" error. Its only in two passages and I don't see any obvious mistake I made. The code is: ...
1
vote
1answer
29 views

How do I keep my paragraphs seperate?

I am writing a word limit function for my custom blog. I want to limit the words on the index page and remove any formatting. At the moment my code is: function limit_words($string, $word_limit){ ...
1
vote
3answers
47 views

Spaces in links using perl and html

I have a problem with spaces using perl. I'm taking my informations from a db and I'm using them for a query string, but if there is a space, I can't validate my page. <a href="fish.cgi?fish=White ...
0
votes
0answers
6 views

I want to set @&quot; A &quot; as the text in a UILabel. When I do so, the spaces get trimmed. How do I prevent this?

[answerBox1 setText:@" A. "]; The text is the textbox is just displayed as 'A'. How do I get about this?
0
votes
1answer
22 views

Replace spaces in URL after #

I have a database dump from Wordpress that has url's with spaces that I need to remove the spaces from. I thought this would be a lot simpler of a task. This is the expression to match the bad href's ...
-1
votes
0answers
85 views

live tv rtmp url spaces in playpath gets %20

I am playing rtmp live tv streams (with spaces in the playpath) in android. I get the URL from the live tv channel websites using wireshark or Coojah or URLhelper. The streaming URL link(s) has ...
1
vote
0answers
85 views

Issue with Spaces in UserContainer LDAP string for Forms Based Authentication in SharePoint 2013

Steps: Web Application was created with Claims Authentication using Windows NTLM Authentication FBA (Forms Based Authentication) was enabled post app creation Was able to set up Forms ...
1
vote
3answers
39 views

Removing spaces from a variable in batch

I am writing a file to remove spaces from filenames in a folder and then put the result in a .txt file. I just get a result of "Echo is on." over and over. This is what I have so far: @echo ON ...
0
votes
5answers
77 views

Delete a space from a string [duplicate]

I tried to write a function that get a string with spaces and returns the string without the spaces. for example: str = " a f "; will be replaced to "af"; my function doesn't work, it ...
-2
votes
1answer
26 views

Get a line with spaces of unknown size [duplicate]

I want to read a string, the string can contain spaces. I tried: char* str; cin >> str; // but I have to allocate a memory by making new so I think about: string str; cin >> str; ...
1
vote
2answers
48 views

spaces/nulls inserted into redirected output of the cmd command

When I run the command wmic memorychip get capacity from the command line in the cmd window, the output on the screen looks like: Capacity 2147483648 However, if I add this command to a ...
2
votes
4answers
97 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
0answers
18 views

How can I capture the feed of a Space and embed it in an NSView similar to Mission Control Space previews?

What I'd like to do is display a Desktop preview of another Space the exact same way the current implementation of Spaces shows previews of all other Desktops. I've provided a graphic at the bottom ...
0
votes
1answer
41 views

Sublime2 “translate_tabs_to_spaces: false” but it still inserts spaces. Why?

So I'm using Sublime Text 2, and I have set "translate_tabs_to_spaces": false, so that tabs remain tabs and don't get converted to spaces. However, when I type a tab, it still inserts 4 spaces, ...
2
votes
2answers
66 views

Align: How to trim spaces from block selection to start of text?

I often find myself left aligning text within other text. I know there are plugins to align columns but within a lot of other text it is not the easiest way. This is my text: >...this is text ...
2
votes
1answer
62 views

Bash doesn't parse quotes when converting a string to arguments

This is my problem. In bash 3: $ test='One "This is two" Three' $ set -- $test $ echo $2 "This How to get bash to understand the quotes and return $2 as This is two and not "This? Unfortunately I ...
1
vote
3answers
81 views

Adding entered items separated by spaces into a dictionary. Python [closed]

I need to make a program which asks the user to enter the city followed by the temperature there. The city and temperature are separated by a space. The program stops asking for input and reports the ...
2
votes
3answers
53 views

Understanding (multiple and automatic) filename quoting

I'm starting bash scripting and i can't handle spaced filename. I searched other questions about my problem here, like: how to output file names surrounded with quotes in SINGLE line? In my script i ...
0
votes
3answers
76 views

Removing whitespace from a list in python

I am currently making a cipher program in python but I can't seem to solve this one problem: word = ['a', 'b', 'c'] -----enciphering process------- message = ['d', 'e', 'f'] print message[x], What ...
-1
votes
2answers
80 views

PHP regex doesn't working in my website but works on regular expression editor

my aim for the "author name input", to be sure that only spaces and utf-8 letters are inputted. my website lang is Turkish, Turkish alphabet has non-English characters. my weird issue this regex ...
0
votes
1answer
43 views

How can I get the ID of the active Desktop of Mac OS X?

is there a way to get the ID of the active Desktop in Mac OS X when you have multiple desktops. I didn't find a method or API for that.
0
votes
0answers
38 views

Pydev Comment Toggle Adds Indent

Problem: When I toggle a comment in Pydev it adds a space, inconveniencing me to manually correct this indentation. This was not an issue with earlier versions of Eclipse/Pydev. This problem occurs if ...
1
vote
1answer
87 views

SQL Server: Specify Column Name as Attribute Using FOR XML

I need to return a column alias that has spaces in it in XML from SQL Server. Since you can't have spaces in XML column names I'd like to return this alias in a "columnName" attribute. Generally, ...
1
vote
1answer
42 views

How to make awk gsub return a tab-separated line?

I use awk gsub to replace a string in a specific column of my tab-separated file: cat test.txt 1 1 2032 1 2 1 2032 2 3 1 999 3 4 1 2032 4 5 1 9999 5 However, the ...
0
votes
2answers
119 views

Delete extra spaces in list items - Sublime Text 2

Sometimes I need to put tags at the end of a list item using the shortcut: [Ctr] + [Shift] + [L] + [End] to edit multiple list items using multiple cursors. This doesn't always work so well when ...
0
votes
3answers
43 views

htaccess with spaces and %20

I have trolled through Stack Overflow and tried every answer given, but cannot solve my issue. I redesigned my site and am trying to correct 404 errors using Redirect 301. Here is what I have tried ...
0
votes
1answer
51 views

PHP - Hidden whitespaces after decrypt

I have read about 50 pages or more, for more than 3 hours and i didn't find any solution... For example, i have encrypted emails in my system and i have a code to give me the email list to send an ...
0
votes
1answer
24 views

Append different number of spaces at the end of a string

I want to add different number of spaces after a string: I have used echo "444rrrr" | sed 's/$/ /' This adds 5 space after "444rrrr". Since I do not know the number of spaces that I have to ...
0
votes
4answers
190 views

Bash: Insert escapes to variable containing spaces

Trying to copy a remote file to my local system using scp in bash I've obtained the filename that i want and assigned to variable, $lastModifiedFile, but the problem is it contains spaces in the ...
0
votes
2answers
30 views

Another space between divs issue, other answers not working

Got a space between just one div in a web page. Recreated it as jsfiddle http://jsfiddle.net/durN4/ The problem is between the "Switzerland Inn on the Blue Ridge Parkway" banner and the main text ...
0
votes
1answer
28 views

in CKEditor, how can I turn 2 spaces into 1 after a period

Many people still type two spaces after a period. CKeditor allows this (where as straight html will ignore the second). CKEditor adds &nbsp;. I just want the one space without the &nbsp;.
-1
votes
2answers
92 views

Checking for spaces in C++?

I'm writing an encryption program for class. I need to be able to track the position of spaces in a string, as well as adding 13 to the ASCII value of each character of the string. I keep getting an ...
0
votes
3answers
96 views

Bash Script looping on Find Command: output has spaces

I have the following code which attempts to find all files which match certain patterns and copy them to a new directory, adding a suffix if the file already exists. This is because duplicate ...
0
votes
1answer
45 views

Mysterious Spacing in text of SQL

I am trying to replace space in the notes(text) of my SQL. select REPLACE(cast(notes as varchar(8000)), ' ', '.') as notes from nTable where CaseID = '1449686' Result: **** ...
0
votes
1answer
73 views

Removing trailing Spaces from Long Datatype PL/SQL

I have a Long with a couple of sentences in it, at the end there is a huge amount of blank spaces that need removed. The problem is that the I have wrote a function to convert this long to a Varchar2 ...
0
votes
1answer
55 views

Is there a way to create a shortcut in Eclipse that would jump the cursor to the nth column in the current row?

My boss has some very strict rules regarding indentation of Java code. In many cases I have to jump to the 26th or 28th column of the current row. The characters between my original location and the ...
-2
votes
3answers
48 views

How to remove the spaces in string in javascript [duplicate]

I would like to avoid spaces from a string in javascript. I would like to remove spaces not only infront and after of the string , instead I would like to remove spaces from the string (front,in ...
1
vote
2answers
154 views

Add spaces to variable in shell script

I want create a yaml configuration file from a sh script. So I need to add multiple spaces to a variable like that: SERVERS="" for i in $(seq 1 5); do SERVERS="$SERVERS -server`printf "%03d" ...
0
votes
1answer
179 views

Batch file read a line set values between spaces

I want to set up this batch file to read lines in a text file using something along the lines of this. for /f "tokens=* delims= " %%a in (RawData.txt) do ( set /a N+=1 set v!N!=%%a ) and say for ...
0
votes
0answers
13 views

How do I apply a patch in windows, where filenames and paths contain spaces?

As in the title... How do I apply a patch in windows, where the files are NOT in version control. (Actually in my case, they are in perforce, but I would prefer a VCS-agnostic solution). Patch for ...
3
votes
0answers
150 views

Git pull --rebase converting spaces to tabs

This problem is driving me mad. Using Git with Github. I'm working on one particular file using spaces instead of tabs. I always ensure that I change all tab indents to spaces. Diffs confirm that ...
0
votes
3answers
58 views

Need to remove files with spaces in Debian

I need to find and remove files with spaces in them in a certain folder.
-2
votes
2answers
91 views

How to omit the spaces in a string

I need to write a program that will read in a sentence and output the number of words in the sentence. I have the program done, but the problem is that my program is counting the spaces inbetween the ...
1
vote
1answer
57 views

Eclipse Tabs Slightly Larger Than Four Spaces

This is not a tabs vs. spaces issue. It is simply that my Eclipse text editors (java, xml, text, etc.) do not line up their tabs with spaces properly. Here is a screen shot where I typed the number ...
0
votes
0answers
52 views

Doskey macro with spaces in passed variable?

I am creating some common doskey commands I use on a regular basis. I am trying to have multiple variables in the doskey macro and sometimes a variable will have spaces in it. I have tried quoting ...
0
votes
2answers
78 views

Are dots in URL treated as spaces by SE? Does /mr.-john-smith/ have double space? [closed]

From what I gathered from google, dots are treated like dashes (spaces) by the search engine. How should one write an URL if users are searching for Mr. John Smith? example.com/Mr.-John-Smith ...
1
vote
1answer
43 views

Add space checking to regex filter

I have the following regex that is supposed to strip slashes and other path info from a file name for an uploader. I also want to remove any spaces to the file name. I have looked at the other ...

1 2 3 4 5 8