Questions tagged [quotation-marks]

271 questions
0
votes
1 answer

Trying to get my own printf function to work with variables

I am programming a display and I am able to display characters on the display by using this function: void printChar(char *tekst, uint16_t xPos, uint16_t yPos) { //calculate the position the first byte should be placed on uint16_t startPos…
0
votes
1 answer

Mutiple quotation marks in HTML / Javascript

Sorry for the stupid question. I tried looking for an answer somewhere, but couldn't find any. I can't get this code to work:
Help?
0
votes
1 answer

python 3 single quotation escapes parameter marker

hi I want to reproduce the sql command SP_HELPTEXT SP_CIW_STEP1 in cursor.execute in pyodb, using ? as parameter marker . import pyodbc ch = pyodbc.connect('DRIVER={SQL Server};SERVER=xxx;DATABASE=yyy;Trusted_Connection=True') cur =…
YJZ
  • 3,934
  • 11
  • 43
  • 67
0
votes
1 answer

Why do these quotationmarks break my code within HTML, but work via PHP echo?

This works: This doesn't 500 Internal Server Error: "" Why? Thank you! I'm using PHPStorm and MAMP.
Hillcow
  • 890
  • 3
  • 19
  • 48
0
votes
1 answer

How to remove double quotation marks around numbers in a CSV file in Matlab

I am using csvread syntax m =csvread('reserve2.csv',7,3,[7,3,9,4]) from Matlab to read comma seperated values from a CSV file. Unfortunately the numbers in the specified rows and columns in the CSV file are listed with double quotation marks around…
Fahim
  • 3
  • 3
0
votes
2 answers

Quotationmarks in html

Today i read: Don’t use single quotation marks around paths for images. When setting a background image, resist the urge to surround the path with quote marks. They’re not necessary, and IE5/Mac will choke. Meaning instead of:
Herrsocke
  • 272
  • 4
  • 13
0
votes
0 answers

Generate and embed string in quotation marks

I have a column of numbers demarking ages (5-100) within a cohort (B4:B99). I want to use the values within this column as a unique string within another function =FUNCTION("string",value). The function requires the string to be within quotation…
0
votes
2 answers

SAS Proc Import csv file with columns enclosed in quotation marks

I have a particular problem. I have exported a csv file where I on some columns needed to put the data in quoation-marks because of leading zeros, and sometimes a long datanumber includes "E" in them on the export. Now I am trying to import the same…
Jaz
  • 33
  • 1
  • 6
0
votes
1 answer

How do I search for words *including* quotation marks in Access/SQL

I need to distinguish ‘"Omreisende"’ from ‘Omreisende’ in an SQL search. How do I write such a query? The solutions I have found thus far (such as this one), specifically try to circumvent the quotation mark, whereas I need to differentiate strings…
Canned Man
  • 734
  • 1
  • 7
  • 26
0
votes
1 answer

Batch script to import Virtual Box appliance adding quotation marks to end of shared folder path

I have created a batch script that imports a virtual box appliance and configures it for that machine. Part of the script deletes the share (between the guest and host) and creates it again with a new host path like this: "%vbPath%VBoxManage"…
MicWit
  • 655
  • 12
  • 31
0
votes
2 answers

Delimited List with Quotation Marks for SQL query

I have a cheat sheet I use to for turning a list of orders in a comma delimited list. I've been asked to duplicate it, but instead of simply returning the values from the list, I've been asked to place them in quotation marks for a SQL query a…
bryann
  • 3
  • 2
0
votes
1 answer

C# Regex: Check if the given directory in a net use command contains whitespaces

I am programming a tool to standardize batch-files and I use a regular expression to validate every net use command in it. I'm stuck at the directory that is given to the command. The standard syntax of the command in this case is: net use…
0
votes
2 answers

How to add quotation marks in a string?

Hi I have an array using a code below var selectedValues=new Array(); selectedValues=divisi.split(","); and the result is ITD, ITO, Keuangan, Sumber Daya Manusia But I want to have a result like "ITD", "ITO", "Keuangan", "Sumber Daya…
hendraspt
  • 959
  • 3
  • 19
  • 42
0
votes
1 answer

sparql regex quotation marks and dash

I have a literal string like "10-16.7" . I want to filter it and take the first number. In this example, I want to filter only the number 10 . I think this is the correct regex: (["'])(.*-*)-.* but when I try it on my query it doesn't recognize the…
linous
  • 263
  • 1
  • 6
  • 17
0
votes
1 answer

Am I using quotation marks properly in JS innerHTML?

var foo = 100; var firstCell = newRow.firstChild.innerHTML = ""; I have this small line of code which inserts a button into a table cell then assigns it a function with a…