double-quotes Questions

4

Solved

I saw a similar question on Stack Overflow pertaining to Android, but I was wondering whether I should use backticks (`) or double quotes (") - using Python - to select table names or rowid or...
Departmentalize asked 5/8, 2014 at 14:18

5

Solved

I'm trying to write a CSV file using Python's csv writer. One of the column values is enclosed in "" [double quotes] e.g.: 'col1' 'col2' "test". When I open the file in Wordpad,...
Galimatias asked 31/7, 2014 at 10:43

4

Solved

In Ruby it's possible to use the strings without the need to escape the double quote in the string, like Q/Some my string with "double quotes"/ Is it possible with C# to use a string without a ne...
Madaras asked 3/8, 2012 at 8:18

7

I am stripping off double quotes from a string, but I keep getting this error from the following function. What is the problem here? void readCSVCell(stringstream& lineStream, string& s) {...
Aboulia asked 15/4, 2011 at 8:49

6

Solved

I am trying to deserialize a json string received as a response from the service. The client is Windows Phone 7, in C#. I am using Json .NET - James Newton-King deserializor to directly convert the...
Epigraphy asked 13/11, 2011 at 3:50

5

I have an application, and it is fed some HTML. It then needs to put that HTML into a string. This HTML contains single and double quotes. Is it possible, in javascript, to declare a string with in...
Magnification asked 8/7, 2011 at 18:17

2

Solved

This was asked here, but no solution was provided for PowerShell. The solution given does not work in PowerShell (specifically, PowerShell 5.1 within VSCode). I have tried git config --global merge...
Expend asked 29/4, 2021 at 2:36

6

Solved

I'm trying to insert into a table with this field TITLE varchar(200) NOT NULL the next sentence: INSERT OR IGNORE INTO EXAMPLETABLE VALUES ("1-Preludi \"Obrint Pas 2011\"", ... The problem is t...
Marietta asked 4/10, 2011 at 11:25

18

Solved

In .NET, what is the difference between String.Empty and "", and are they interchangeable, or is there some underlying reference or Localization issues around equality that String.Empty w...
Gamut asked 30/9, 2008 at 1:59

5

I have a file where on each line I have text like this (representing cast of a film): [{'cast_id': 23, 'character': "Roger 'Verbal' Kint", 'credit_id': '52fe4260c3a36847f8019af7', 'gender': ...
Ancestry asked 5/12, 2017 at 17:55

2

Solved

I've tried searching for existing answers, but I could not find them. I'd like to access an ArrayList from an object within an ArrayList, so: Basically two classes: Glossary and Word. Glossary...
Masthead asked 13/11, 2013 at 14:35

7

Solved

I have a long list of names that I need to have quotes around (it can be double or single quotes) and I have about 8,000 of them. I have them in Excel without any quotes and I can copy all of the n...
Sherasherar asked 30/6, 2010 at 1:49

7

I have the following string, which I want to execute as a process: Rundll32 Printui.dll,PrintUIEntry /ia /K /q /m "SHARP MX-5500N PS" /h "Windows NT x86" /v 3 /f sn0hwenu.inf However, given the p...
Reynaldoreynard asked 4/4, 2011 at 15:25

1

I need some help ion CSV parsing with CSV Helper in C# my example file is "SKU","Title","URL","BP","SP","NumberOf","Wid1",&quot...
Torrlow asked 24/2, 2021 at 23:48

8

Solved

I have a string "I want to learn "c#"". How can I include the quotes before and after c#?
Deborahdeborath asked 11/8, 2010 at 12:10

20

Solved

I have a string variable such as this: string title = string.empty; I have to display the content of whatever is passed to it inside a div within double quotes. I have written something like this:...
Banquer asked 11/10, 2010 at 11:57

3

I've been searching for a solution to this but couldn't find one. Not sure if its possible. Can I pass into command-line execution that passes a in a bat file which has an input file as its argume...

7

Solved

I am having trouble to read a file containing lines like the one below in R. "_:b5507F4C7x59005","Fabiana D\"atri" Any idea? How can I make read.table understand that \" is the escape of quote? ...
Rescue asked 15/8, 2011 at 15:12

3

I am receiving the error below when I want to upload a data to google big query from a csv file. I have read many similar questions but still couldn't find a simple answer around how to fix this. A...
Dedal asked 18/1, 2021 at 21:54

8

Solved

Double quotes can be escaped like this: string test = @"He said to me, ""Hello World"". How are you?"; But this involves adding character " to the string. Is there a C# function or other method ...
Gauthier asked 23/1, 2013 at 13:20

1

i explored all over the topics and found out there is no answer for this question, everyone is using search and replace, that's not the point. we have to set the default value for attributes when c...
Corwun asked 9/3, 2022 at 6:17

11

Solved

How can I make Java print "Hello"? When I type System.out.print("Hello"); the output will be Hello. What I am looking for is "Hello" with the quotes("").
Krystinakrystle asked 2/10, 2010 at 6:6

2

Solved

H2 seems to make a difference between name with quote and name without quote. Is there a way to make it treat them the same way? Here's the tests that I've done : CREATE TABLE test (dummy INT); C...
Confirmatory asked 28/5, 2012 at 20:15

2

Solved

I'm a C# developer who try to learn F#. As far as I know, F# 2.0 had two kind of syntaxes for strings: normal strings, and verbatim strings (like C#). With F# 3.0 version there is a feature called...
Abiotic asked 5/7, 2014 at 13:21

7

Solved

In Bash, what are the differences between single quotes ('') and double quotes ("")?
Sexdecillion asked 14/7, 2011 at 17:55

© 2022 - 2025 — McMap. All rights reserved.