Questions tagged [quotation-marks]

271 questions
5
votes
2 answers

jquery slanted/curly quotation marks confusion

I just came across this variation of appending a string containing a value stored in a variable, that I haven't seen before. Can anyone help me explain whats going on here? This is what I came across: var fruit = "banana"; $main =…
lukastillmann
  • 419
  • 1
  • 3
  • 11
4
votes
1 answer

echo nested quotation marks in tcsh

I have a tcsh script that generates a text file. One of the lines in the text file is: bla bla bla 'foo foo foo "bar bar bar"': etc etc; Note the nested ' and " and also the : and ; that must be there. The : and ; require the whole string to be…
Nathan Fellman
  • 122,701
  • 101
  • 260
  • 319
4
votes
3 answers

Quotation mark in string

I have some string with variable, e.g. string path = @"C:\one\filename.exe" + arguments arguments: "-s -c -d > "somedirectory\some file.txt"" I've problem with redirection output to "somedirectory\some file" If I put "\"" or char.ToString('"') it…
Saint
  • 5,397
  • 22
  • 63
  • 107
4
votes
1 answer

PyCharm deletes quotation marks in paramenter field

I want to set a parameter for a python script by using the parameter field in PyCharm. My config: But the command in the Run console is: python3 path_to_script.py '{app_id: picoballoon_network, dev_id: ferdinand_8c ... and so on and not: python3…
kabr8
  • 341
  • 1
  • 2
  • 19
4
votes
2 answers

Data in csv with enclosed data in double quotation marks

I am trying to retrieve data from an open online .csv file: http://www.anp.gov.br/arquivos/acesso-informacao/dp/2020-producao-mar.csv I am using Anaconda + Spyder + Pandas. The command line I use is this: FileList =…
Luis Lamas
  • 49
  • 4
4
votes
1 answer

Triple Quotation Marks in Javascript

In Python, there are these triple quotation marks ('''), for multiple line strings, which is very useful. Is there any way to do this in javascript?
MatthewProSkils
  • 364
  • 2
  • 13
4
votes
1 answer

Ant / XML escaping a standalone Quotation Mark in a property value

In my ant build-file there is a property: This property is set via GUI by the user. Later I want to call a java task and put the value of the property "pwd" as an argument to the java…
sarkasronie
  • 335
  • 1
  • 2
  • 15
4
votes
2 answers

How to add single quotation around date in Excel for use in SQL?

So I have a long list of dates that I need to add single quotations around. However I cannot figure how to add the quotes around the date. I've looked up for help but most were using double quotations. 8/13/2018 into '8/13/2018' Some Possible…
Weisheng Wu
  • 1,381
  • 2
  • 8
  • 10
4
votes
3 answers

Styling quotation marks

I have run into and issue when styling quotes. So what I'm trying to do is pull the quotation marks down a bit relative to the text so that it lines up well. I played around with relative and absolute positioning but could not figure it out. This…
manuel
  • 105
  • 10
4
votes
2 answers

How to run a Racket program without output being quoted?

I have a basic Racket program: hello.rkt: (write "Hello, World!") When I run it with racket -f hello.rkt, I get the following output: "Hello, World!" Is there a special compiler flag, or special version of "write/print" that removes the quotes…
Dmytro
  • 5,068
  • 4
  • 39
  • 50
4
votes
2 answers

Removing whitespace-characters, except inside quotation marks in PHP?

I need to remove all whitespace from string, but quotations should stay as they were. Here's an example: string to parse: hola hola "pepsi cola" yay output: holahola"pepsi cola"yay Any idea? I'm sure this can be done with regex, but any solution…
Martti Laine
  • 12,655
  • 22
  • 68
  • 102
4
votes
3 answers

Parentheses and quotation marks in output

Sometimes when I use the print function, parentheses and quotation marks appear in the output. I'm using Python 3.4 and writing the code in Sublime Text on a mac. Here's an example Input: a=2 print("a",a) Output: ('a', 2) I'd like to show only a…
Noa
  • 111
  • 1
  • 2
  • 6
4
votes
3 answers

remove all quotation marks from a data frame

I have a data frame rep that looks like this: > head(rep) position chrom value label [1,] "17408" "chr1" "0" "miRNA" [2,] "17409" "chr1" "0" "miRNA" [3,] "17410" "chr1" "0" "miRNA" [4,] "17411" "chr1" "0" "miRNA" [5,] "17412" …
biohazard
  • 2,017
  • 10
  • 28
  • 41
3
votes
2 answers

Python CSV : field containing quotation mark at the beginning

I am trying to read a CSV file containing a line like following: test,"test,"test,test,test,test There is a problem with the quotation marks (There are six fields, but they are retrieved as five fields, as "test,"test is read as a single field). I…
David
  • 595
  • 1
  • 8
  • 19
3
votes
1 answer

How do I get HTML elements with quotation marks into a Bootstrap popover?

My Bootstrap Popover button: I want to get this HTML into the data-content so it…
Seth Schaffner
  • 125
  • 1
  • 1
  • 9
1
2
3
18 19