Questions tagged [quotation-marks]
271 questions
-1
votes
3 answers
Getting variables into "quotation marks"
I'm currently struggling with getting variables within "quoatation marks"
My code looks like this:
const char* cmd = "ffmpeg -r 25 -f rawvideo -pix_fmt rgba -s 1280x720 -i - "
"-threads 0 -preset fast -y -pix_fmt yuv420p -crf 21 -vf vflip…

Marco Reisacher
- 85
- 1
- 13
-1
votes
1 answer
Difference between double quotes and single quotes in Ruby
What is the difference between double quotation marks "" and single quotation marks '' in Ruby?
As far as I have seen this seems to only be a choice of preference and there is no change in function unless the two are accidentally mixed, ie "Some…

Berg Dodson
- 53
- 1
- 4
-1
votes
2 answers
How can I make Non-English quotation marks with a help of CSS?
I usually write "" quotation marks but in some Non-English countries you need to write „“. And I am curently working on Non-English website and have no idea how to write Non-English quotation marks with my keyboard. So I was thinking maybe CSS could…

Jaras Ramunas
- 11
- 2
-1
votes
2 answers
VBS - Ignoring the \ special character properties
I'm struggling to call a command line correctly in VBS due to the \ escape character.
The string output I'm looking to write to the command line is,
batch_name=\"myBatch\"
Which gets passed to a .exe file. Unfortunately, due to the way the \…

user2366626
- 1
- 1
- 1
-2
votes
2 answers
How to remove quotation from a 2d array
there. I'm trying to remove quotations marks the following output
[['40' '40']
['10' '10']
['200' '200']
['230' '231']
['40' '43 ']
['15' '45 ']
['220' '190']]
I desire the following output:
[[40 40]
[10 10]
[....]]
here are my codes. I've…

Brandon Oson
- 11
- 1
- 4
-2
votes
1 answer
How can I display opening (bottom aligned) quotation marks in TextView?
Is it possible to display in a TextView a bottom aligned quotation mark like this?

Ádám Rozinka
- 25
- 4
-2
votes
3 answers
Double nested quotes
I have this line of code
formsParent.innerHTML = "
Order submitted. Thank you for ordering!
" The first quote is for the innerHTML property. Next is the properties inside…
Marvin
- 853
- 2
- 14
- 38
-2
votes
2 answers
Replace Apostrophe with Quote mark in Python
I'm trying to write a program which compares specific parameters of INI Files.
The problem is that there are some Strings in those files which are marked with an apostrophe and some other which are marked with quote marks.
What I am trying to do is…

Jonas Schuster
- 1
- 4
-2
votes
2 answers
json arrays of object with quotaions mark
I am trying to send an json object to my apiController :
myJson Object that I construct dynamicaly like this :
var course= new Object();
course.info= $scope.info;
course.studentList = [];
course.studentList = $scope.results;
$scope.results is an…

anonymouslyGeek
- 7
- 6
-2
votes
1 answer
How to reference an Image within quotation marks in HTML
I was wondering how to display an image inside of a button.
I have this code:
And I wish to place an image within the button instead of text. I tried setting the value field to…

ASA2k
- 11
- 5
-2
votes
1 answer
Alternates to quotation marks in Objective C
I have this line of code in a method:
system("osascript -e 'tell app "System Events" to restart'");
As you can see, I've got two quotation marks, and since these terminal commands have to be so specific, I need to know another way to run a system…

cyw
- 520
- 1
- 4
- 14
-3
votes
2 answers
Single quotes problems in jQuery ajax
This is the error I am facing about jquery & ajax
Uncaught SyntaxError: missing ) after argument list
sizeBig('${author}', '${quote}')
sizeBig('Bob Ross', 'Talent is a pursued interest. Anything that you're willing to practice, you can do.',…

1105man
- 1
- 1
-3
votes
1 answer
Haskell - adding quotation marks (speech marks)
Sorry if this is a stupid question but does anyone know of a function which would allow me to enclose a number in quotation marks in Haskell, for example:
function 7777 -> "7777"
function 1234 -> "1234"
Thanks for any help :)

Michael
- 83
- 1
- 2
- 8
-4
votes
1 answer
Replacing quotation marks in Python
I have the the following text
text = SCISSOR LIFT 18-19' ELECTRIC 60" LENGTH
I want:
text = SCISSOR LIFT 18-19 FT ELECTRIC 60 INCH LENGTH
I tried text = "SCISSOR LIFT 18-19' ELECTRIC 60" LENGTH"
text.replace('"', " ")
But I got
File…

Noor Dean
- 21
- 2
-5
votes
1 answer
Remove quotation marks - Swift
From a .txt file I get strings that are full of quotation marks which of course are terrible to use in code. e.g.
3820,"20170217",8,752,119,"Rh",,"fr",,,,"iC1.2","iC1.2",,"IS6a","Z",,0,"IS6a",,201702161517,"-"
…