Questions tagged [quotation-marks]

271 questions
0
votes
0 answers

Annoying Intellisense behavior: automatic filling in when typing text after a quotation mark

This is extremely annoying! When typing code, after entering a quotation mark, for example: MyVar = InputBox(" Intellisense continues to make suggestions and fill in variables even though I'm trying to enter something in quotes. if I try to…
0
votes
1 answer

How to avoid copying quotation marks in Google Sheets

I'm working on a Google Sheet that converts URL slugs and dates into a script. The problem I face is that when you copy the text that is being generated by a formula (that includes cell references and a TEXT formula) it also copies extra quotation…
Sami Chouchane
  • 195
  • 1
  • 11
0
votes
1 answer

Windows Batch: Grep text in first quotation marks

I've got a text file with following line: 17,60,"10 Ursae Majoris",0.03125,34.90625,-39.09375,0,0,176,None,5,None,64,Anarchy,10,None,,,,0,1678643440,1678643440,"10 Ursae Majoris",,,3,Common,2415659059555 and need to get the name inside the first…
0
votes
1 answer

Google Sheets SumIf Formula Parse Error From Quotation Marks?

In column A I have a list of products and one of those products has quotation marks. In column B I have a list of quantites. I want to create a SumIf Formular that sums Column B if Column A has the Prodcut Name Quotation Example Name. The product…
0
votes
0 answers

Notion JavaScript Quotation issue on RegEx formula in ReplaceAll

Hello i was trying to solve this issue on my Notion database, What i am trying to accomplish is to have a code that shows me the latest read chapter in the database. The difference between a read/unread chapter is the status field i put up (it is a…
shac
  • 9
  • 3
0
votes
0 answers

Single quote ( ' ) vs double quote ( " ) in SQL or SQL in Google Cloud

When I write SQL queries, I sometimes get error messages and am not sure if it's because I am not using a backtick, or single quote, or double-quotation marks. I just keep trying different quotation marks until it works. Sometimes it doesn't require…
0
votes
0 answers

print a string with or without quotations?

def list_toPrint(list_a): print(list_a) return "hello" list_toPrint([1,2,3,4]) #the 2nd line is 'hello' -When calling a function, the string is with '' [1,2,3,4] 'hello' def list_toPrint(list_a): print(list_a) return…
ANEN
  • 11
  • 1
0
votes
1 answer

POWERSHELL - Remove Quotation Marks from CSV for just one column

I want to remove the quotation marks for only the first column of my csv file with powershell So instead of: "Username","Identifier" "booker12","9012" "grey07","2070" I want the result to be: Username,"Identifier" booker12,"9012"…
user18209625
  • 139
  • 2
  • 15
0
votes
1 answer

How to convert many words with no commas between them to a vector with a single algorithm?

Let's say I have the following words (but thousands of them) and there are no commas between them : Hello Hi How Hide Hold Hear and I want to convert them into a vector called H_words H_words = c("Hello", "Hi", "How", "Hide", "Hold", "Hear") How…
Anas116
  • 797
  • 2
  • 9
0
votes
0 answers

php mysql only german quotation marks are not shown when used in a wordpress shortcode

I have a mysql table with a text field containing German text with German quotes. E.g. „Freda“. If I read the database directly via php the result is correct. But when I generate a shortcode in wordpress that contains the same php query of the…
Hoschigil
  • 1
  • 2
0
votes
1 answer

PHP convert_uudecode function - special characters problem

I'd like to use convert_uudecode function, but encoded string contains a quotation mark ( " ) and also an apostrophe ( ' ) I can't just do it like this: print convert_uudecode("M:'1T<#HO+V1N87=R;W0N;F%Z=V$N<&PO;&EC96YC97,O8F5S="UD96%L'0` `…
David
  • 1,932
  • 3
  • 27
  • 35
0
votes
1 answer

Way to many quotation marks in javascript

I have a TableA containing brands with names, names are for example: brand1, 123, brand2, 999. I want to select names, create button with id=name and pass the name to function brandOnOff(name), then alert the name I passed. When I press button "123"…
m1212
  • 31
  • 6
0
votes
0 answers

Backticks make tag to function improperly

Why does not work but does? Aren't backticks interchangeable with quotation marks?
anon
0
votes
0 answers

Remove quotation display from python string variable in HTML

I have an html template where I am using a string variable generated from a pandas dataframe My html Store:{{store_name}} My string variable store_name = df_bcu_temp['store description fr'].iloc[0] When I look at my html I have : Store: "My store…
0
votes
1 answer

reading a file but whenever I get the Key Pair Value...unable to get rid of the quotations

I'm creating a dictionary from this data set file but every time I read from the file. for example - sample file with r extension (test.r) #######################TEST########################### #### 1. Test key1 = '2022-01-01' #random…
I eat toast
  • 117
  • 6