Questions tagged [space]

DO NOT USE THIS TAG! It is too ambiguous; instead please use a more specific tag like letter-spacing (separation between letters), whitespace (between words), margin (areas of a screen), layout or a platform/language-specific tag (for non-web layouts), etc.

DO NOT USE THIS TAG! It is too ambiguous; please tag your platform and/or language instead and if necessary a more specific tag like

  • letter-spacing (separation between letters),
  • whitespace (between words, glyphs),
  • margin (areas of a screen),
  • layout or a platform-specific tag (for non-web layouts)

etc.

Space characters in text systems indicate separation between words or glyphs. While most Western scripts use only one space character, Unicode defines multiple different kinds of whitespace characters for use in specialized typography functions and in Asian languages.

1977 questions
0
votes
1 answer

for loop on factor variable in R (levels are characters with spaces) return warning message "no non-missing arguments to max"

I have a simple data for practice and when I tried to calculate the max, min population of each time zone as below, I got warning messages like "In max(state$time.population[look.at]) :no non-missing arguments to max; returning -Inf". I tried to run…
0
votes
2 answers

How do I put a space in between every four characters in this output?

I am writing a program where I have to display binary representations of various data types. I need the binary output to have a space after every four numbers. For instance: 0011 1111 1000 1110 1011 1000 0101 0010 Below is sample of a function I am…
TX_RocketMan
  • 3
  • 1
  • 3
0
votes
1 answer

single space issue in bing search api?

i am integrating bing search api into my website. i am using bing image search. its working fine for me but when i search image from website i got a one big issue. issue details is given below $query= 'kamen rider site: http://p-bandai.jp/'; $query…
Padmanathan J
  • 4,614
  • 5
  • 37
  • 75
0
votes
2 answers

How to change all foldernames with a point to a space using a bat file

I have a large number of folders on a drive (+20.000) And I like to have them ordered by name. but some folders are using "." (points) instead of " " (Spaces). So I would like to create a .bat file that I drop in that certain folder (which contains…
0
votes
1 answer

Hard drive space vs Database space

Our database server has 2 disks; disk C has 40GB free space according to file explorer and disk D is full. The database is comprised of partitions stored in both drives. When I run the following SQL command to see the available space left on the…
0
votes
2 answers

javascript Multiple space into input value self trim

I have an input like this: When I read the input content using Javascript: var myName = document.getElementsByName("myName")[0].value; The content of myName:…
Andrea
  • 83
  • 1
  • 7
0
votes
1 answer

How to replace all parts of a string by regex that stats with a \ and ends with \ or space or {?

I want to create an RTF reader, and I want to get the plain text part. But I can't "delete" the commands from the incoming string 's'... var plain = s.replace(/\\.*(\\|\s|{){1}/g,"");
DBalazs
  • 133
  • 2
  • 9
0
votes
0 answers

BizTalk 2009 FTP cannot retrieve files with spaces in the filename?

I was having a little trouble with reading files using the FTP adapter. Several warnings and errors were found in the application log, and it basically boiled down to this message: A stream read or write operation failed because the stream is in an…
MarioDS
  • 12,895
  • 15
  • 65
  • 121
0
votes
6 answers

How to remove single character in a string (java)?

I have a variable of type string, I want to remove all single characters from it. example: String test = "p testing t testing"; I want the output to be like this: String test = "testing testing"; help me please. thanks.
0
votes
4 answers

how to remove space and replace forward slash in php

i have variable $var = "A/P/ 20014/03 /12/4098 " space uncertain in variable how to remove space and replace forward slash. i want result like this "A-P-20014-03-12-4098"
Arif Hidayat
  • 67
  • 1
  • 9
0
votes
1 answer

Space in directory name crashing .sh - use "usebackq"?

dir1='/d/Dropbox/PhD/Experimental Design/APS/Processed_and_Graphed/InvariantQ' echo $dir1 for f in A*.xlsx do str2=${f%?????} if [[ ! -d $dir1/$str2 ]]; then mkdir $dir1/$str2 else echo "Directory" $dir1/$str2 "already exists,…
0
votes
3 answers

How to test if a string has only spaces in Javascript?

I have a textarea and I need to test if the user put a text like "                        ", or only spaces in it or only " ", I can't accept only spaces, but I can accept "         Hi    !!". How can I do this in Javascript?
Edie Johnny
  • 513
  • 2
  • 5
  • 14
0
votes
3 answers

JavaScript Beginner: What is the functional difference between coding separate space character in functions etc

Is there a functional reason for coding a space separately, (" ") or is it specifically for readability? It seems like a needless extra step to me, will someone please explain the purpose of doing so? e.g: instead of : var userName = prompt("What is…
0
votes
1 answer

Remove spaces from empty elements

Please, help me with the following I guess it's normalize space function, but not sure, how exactly to use it. 1) How to find all Empty elements and remove spaces from it for example need to transform
  • to
  • 2) How to make…
    0
    votes
    0 answers

    extract text from pdf by using php

    I am writing an web app to extract text coentent from pdf. What i am using is class.pdf2text.php. Follow the instruction, the syntax i used is as follows: include('class.pdf2text.php'); $a = new…
    jie zhang
    • 69
    • 8
    1 2 3
    99
    100