Questions tagged [quotation-marks]
271 questions
0
votes
1 answer
how to create dynamic list with quotation mark?
I created a dynamic list. Like this -
List selectedSubjectNameList = [];
Future addSubjectName(college, subject) async {
setState(() {
selectedSubjectNameList.add({"college": college, "subject": subject});
});
}
After adding item,…

Abir Ahsan
- 2,649
- 29
- 51
0
votes
2 answers
Shell script - proper quoting in the awk command
I have a awk command with 2 parameters and one condition - if it is fullfilled, it returns second parameter. So far, it looks like this and works well
awk -v PARAM_NAME="user" '{ if ($1 == "\""PARAM_NAME"\":") { print $2;}}'
Now, I would like to…

Jozef
- 479
- 1
- 9
- 36
0
votes
1 answer
PHP uft8_encode / utf8_decode with double quotation problem
I have a problem with utf8_encode / utf8_decode PHP function.This function must be complementary.
I know that:
utf8_decode convert UTF8 string to ISO-8859-1
utf8_encode convert ISO-8859-1 to UTF8
But if I try to convert and return back the…

Samuel Panicucci
- 97
- 1
- 6
0
votes
1 answer
R doesn't recognize quotation mark when copied from somewhere else and font was Courier new
I have a problem where I create some R code snippets in other tools. In my case I create some code snippets in ppt with font set to Courier New.
However, when I want to paste that code into R (more precise Rstudio), R doesn't recognize the quotation…

deschen
- 10,012
- 3
- 27
- 50
0
votes
1 answer
Generating Csv with PHP - outputting unnecessary quotation marks
I am generating and exporting a CSV through PHP and after some modifications from my team, now it results that inside a column, double quotation marks are being generated.
I generate it through my terminal by executing this Shell script with the…

Oris Sin
- 1,023
- 1
- 13
- 33
0
votes
2 answers
Python - Generating SQL WHERE/IN clause from string List
I am given a Python List of an arbitrary length and containing arbitrary strings.
In particular, it can have strings with embedded single and/or double quotes.
I have no control over the input so I have to take what I am given.
For example:
…

mwk
- 71
- 1
- 5
0
votes
3 answers
Selenium Webdriver find element by Xpath problem with String quotation marks
Here my code:
var loginButton = driver.FindElement(By.XPath("//*[@id="login - view"]/form/div[3]/button"));
I saw already this post: Find texts that contains quotation marks by xpath in Selenium
but it doesn't help me
the quotation marks are The…

F1nn-T
- 67
- 8
0
votes
1 answer
MongoDB: Adding data results in values with two (double) quotation marks for strings
I added some documents/data points in the MongoDB service that I am running on local (Windows).
The added data from csv includes strings but shows with double quotation marks around the values.
For example: ""Hello""
I tried to aggregate using…

charlie090
- 318
- 3
- 17
0
votes
2 answers
Error Message Unclosed quotation mark after the character string
I got this error message when I executed the query.
Msg 105, Level 15, State 1, Line 1
Unclosed quotation mark after the character string ''
Msg 102, Level 15, State 1, Line 1
Incorrect syntax near ''
My code:
DECLARE @imgLogo…

tboekhorst
- 55
- 1
- 8
0
votes
1 answer
How do I remove the surrounding quotes/code block formatting in my regex?
I have this regex to match words, code blocks, and things surrounded by quotes. The problem is that this regex includes the code block formatting and quotation marks.
/(```[^```]*```)|("[^"]*")|[^" \n]+/g

Vegeo Studios
- 11
- 1
0
votes
1 answer
How to replace quotation marks in front of and at the end of a string with brackets?
I'm trying to replace quotation marks with brackets like {}. I need to convert data for a bibtex import, which is not working with the quotation marks. It looks like this:
@article{NASIR20159,
title = "Fault-tolerant context development and…

robinmathar
- 3
- 1
0
votes
2 answers
How to split a Single Column with multiple entries into multiple columns
I have a csv file with entries of multiple columns in a single column with multiple quotes. When I load it in R using data.table(fread) it appears as a table with quotes. I have tried using quote=FALSE, but it is not working.
Here's how it looks…

rumaisa_niazi
- 51
- 3
0
votes
1 answer
splitting Strings into a String Array
I have a Spreadsheet as a .txt file and I need to split each row into an Array for further calculations each value is divided by a ",".
My Problem is some values have quotation marks and inside these quotation marks, they use commas. How can I…

stew
- 27
- 4
0
votes
0 answers
Exectuable compiled with C# replaces quotation marks with strange characters (���) when run in Windows 10
I have a bit of a strange problem. I've been using an application in Windows 7 for many years, which was written in C# using VS 2005. I recently updated to Windows 10 and now the application has stopped working. I get the following error in command…

F.Z.
- 1
- 2
0
votes
1 answer
display quotation marks within a variable freemarker - netsuite advanced pdf
I'm trying to show results in the PDF from the netsuite database, however some results have quotation marks, so the results are incomplete, try adding "? Html" at the end of each variable, but do not It affects the column that I want.
I hope and you…

Ares Tellez
- 11