13
votes
10answers
2k 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 …
0
votes
1answer
25 views
Preventing an application from being moved between spaces
Working on an application that contains legacy Carbon code (mixed with some Cocoa). It is a full screen app (not technically, it just draws itself as though it were) that hides the …
0
votes
1answer
12 views
How to calculate the number of characters(spaces are excluded) within a pair of tags in JQuery or Javascript?
How to calculate the characters(spaces are excluded) within a pair of tags in JQuery or Javascript? What function?
For example:
<pre id="mytext">This is the text. This …
1
vote
2answers
63 views
R: 0-1 sequence without spaces?
Spaces are redundant when reporting a binary sequence. This code
x <- '1 0 0 0 0 0 1 1 0 1 0 1 1 0 '
y<-gsub(' +', '', x)
does the job so I can copy and paste from R. How …
0
votes
4answers
96 views
How to replace whitespaces and tabs with nothing in C?
Hi,
I wrote this function:
void r_tabs_spaces(char *input) {
int i;
for (i = 0; i < strlen(input); i++)
{
if (input[i] == ' ' || input[i] == '\t' …
7
votes
5answers
6k 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 cou …
2
votes
5answers
124 views
In Perl, how can I get the fields in this CSV string into an array without spaces?
Hi,
if I have a string, say:
my $string = "A, B,C, D , E ";
How can I put this into an array in Perl without the leading and trailing spaces? So what I want is only a single le …
2
votes
10answers
311 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 t …
1
vote
5answers
121 views
Is there a text editor that will automatically determine whether to indent with spaces or tabs?
It's very easy to set a text editor to use spaces or tab characters with each press of the tab key. However, I'm working with a grip of Python code maintained by a large team of de …
2
votes
2answers
125 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 …
0
votes
5answers
103 views
C# - Remove spaces in HTML source in between markups?
I am currently working on a program that allows me to enter HTML source code into a RichTextBox control and removes the spaces from in between markups. The only problem is, I am n …
0
votes
4answers
302 views
Trim leading spaces including tabs
I need to read files using vbscript and remove all leading spaces including any tabs.
I now LTRIM will remove the leading spaces but how do I remove tabs also.
Thanks.
0
votes
1answer
25 views
Getting spaces with Boost::regex
I have a chunk of text like:
Name=Long John Silver;Profession=cook;Hobby=Piracy
And using the Boost::regex library I am trying to get the value of each attribute so I have the f …
0
votes
1answer
29 views
Need help with Windows Speech Recognition script to compound a string
The command below for Windows Speech Recognition forces the speech recognition engine to use literal text (""all seventy six people paid five dollars") instead of the default ("all …
0
votes
2answers
180 views
How to remove all spaces and tabs from a given string in C language?
What C function, if any, removes all preceding spaces and tabs from a string?
Thanks.
