Questions tagged [quotations]

Code quotations, a language feature that enables you to generate and work with F# code expressions programmatically. This feature lets you generate an abstract syntax tree that represents F# code.

Code quotations, a language feature that enables you to generate and work with F# code expressions programmatically. This feature lets you generate an abstract syntax tree that represents F# code.

For more information about F# quotations, please visit its MSDN page.

190 questions
-1
votes
3 answers

Extract text from quotation marks in PHP

I have a PHP page which gets text from an outside source wrapped in quotation marks. How do I strip them off? For example: input: "This is a text" output: This is a text Please answer with full PHP coding rather than just the regex...
hizki
  • 709
  • 1
  • 8
  • 19
-1
votes
1 answer

What is wrong with my Python syntax: I am trying to use multiple quotation marks plus variables in a string

I am trying to use Python to write to a file. However, the code has multiple " in it plus calls a variable. I simply cannot manage the syntax. The code should result in: { "Name of site": "https://.google.com", Where the website is a variable not a…
mongobongo
  • 19
  • 4
-1
votes
1 answer

Variable interpolation inside nested quotations in React JSX

I am new in react, don't know how to display photo inside nested quotations, I know the usages of Variable interpolation inside single quote: {assets/images/categories/${photo}} but don't know how to make dynamic cat-2.jpg const AllItems = ({…
-1
votes
1 answer

C++ editing a src=" " tag in html

I am trying to use c++ to edit a large amount of html files. All of it is working except for when i try to edit a src tag. I think it is because of the quotation marks. Here is my code. string strReplace2 = "src=\"\""; //string to replace and…
-1
votes
2 answers

Opening an HTML file inside a div/iframe within PHP

i've got this piece of code i am working on: while (false !== ($entry = readdir($handle))) { if ($entry != "." && $entry != "..") { if (strpos($entry, '.htm',1)) { echo '
Than9000
  • 3
  • 2
-2
votes
2 answers

How do you put quotations around a result from a for loop in Python?

In Python, I am attempting to have the for loop iteration result in quotations so that it passes to another function within the loop. Here is my code along with further explanation of what I'm attempting to do: read = pd.read_csv('Stocks.csv',…
Coder1044
  • 23
  • 5
-2
votes
3 answers

Is there an alternative way to generate quote marks without using the escape sequence?

I am trying to get my output to display double quotations around the abbreviations and also the translated abbreviations. However I have not covered escape sequences in my current class so I was wondering if there was another way to accomplish…
Jmoore
  • 3
  • 2
-2
votes
3 answers

How to echo my HTML in PHP and get rid of an error message?

I'm trying to loop through an array and pass the values into HTML. My loop echos a large block of code. This is a small portion of the code I'm struggling with.

'.$array['title']'

Flo SEBT
  • 11
  • 1
-3
votes
1 answer

Why are those quotations there and how can I remove them?

When I run the following code: const root = document.querySelector('#root3'); async function fetchData(userId) { const response = await fetch(`https://randomuser.me/api/?results=10`); const data = await response.json(); console.log(data); …
user1941537
  • 6,097
  • 14
  • 52
  • 99
-3
votes
1 answer

Quotation marks in HTML

ok so I was wondering what the purpose of quotation marks were in this code: style= "color:orange;font-size:20;" Every time I use autocomplete it does style= "" What is this? what is it purpose? Sorry about the weirdness, still new to using code…
1 2 3
12
13