Questions tagged [quotation-marks]

271 questions
0
votes
1 answer

HTML Purifier & CodeIgniter quotation marks

Basicly i got the simple text to be put in a as title of BLOG post -> This is some random title with "quotation" marks the result i get is this This is some random title with HTML Purifier cuts everything after 1st quotation mark, i am looking…
zinho
  • 225
  • 1
  • 2
  • 9
0
votes
3 answers

How to remove quotation marks (and other marks)?

Is there any way to avoid printing out data (like quotations marks, brackets, commas and other important matematical symbols) when printing from a variable? int1 = random.randint(1,100) int2 = random.randint(1,100) q1 = "What is", int1, "+", int2,…
Shoryu
  • 225
  • 2
  • 3
  • 9
0
votes
2 answers

Variables in quotation marks C++

Let me begin by saying that I could not find an identical question, but my search keywords were fairly generic, and so if you know of a thread that answers my question, point it out to me and I'll close this thread. I'm re-writing a bash script of…
808st8ofmind
  • 23
  • 2
  • 6
0
votes
1 answer

Eclipse strings auto closing

I did something bad to my Eclipse and have no idea how. What is worse, I have no idea how to fix it. When I type quotation mark nothing appears in the editor. It waits for me to write anything, then written text appears in quotation…
Patryk Dobrowolski
  • 1,565
  • 2
  • 13
  • 29
0
votes
2 answers

Batch: Convert .csv to tab-delimited text, only some fields are quoted, contain commas between quotes (eBay order file)

I'm trying to convert the eBay File Exchange download into a tab-delimited format my shipping software can read. If each and every column were quoted, this would be easy--but they're not. Only some columns (name, item listing title, etc) are quoted,…
0
votes
3 answers

How do I use quotation marks correctly in JavaScript?

In my JavaScript code I have the following line: document.write(""); The style and type…
Robin
  • 1,927
  • 3
  • 18
  • 27
0
votes
0 answers

Searching for quotation marks in a varchar(max) field

I have a field in a table set to VARCHAR(MAX) and I am unable to search for quotation marks ["]. If I search for any other character it is working. select * from xml_file_log where request like '%"%'
0
votes
0 answers

How to fix non-identical quotation marks in tumblr

Problem here: Here the HTML: Why We Say “Ah-choo" Here I can see that the marks around “Ah-choo" are different. But I typed them from my keyboard in…
0
votes
1 answer

whether need quotation marks with strings in simpleXML in php

this is my php code to check whether a tag named $GEcode exsits as node in _.xml file: in line 4, when I write GEcode=$GEcode, it echo 'not exsits', when the quotation marks exsit(GEcode='$GEcode'), it return "exsits". I am confused, $GEcode is…
xhg
  • 1,850
  • 2
  • 21
  • 35
0
votes
4 answers

contains quotation mark java

how to I add an argument to check if a string contains ONE quotation mark ? I tried to escape the character but it doesn't work words[i].contains() EDIT: my bad, got some unclosed brackets, works fine now
Dodi
  • 2,201
  • 4
  • 30
  • 39
0
votes
2 answers

Taking string within quotation marks in javascript

I'm trying to get the content of a string within a string, delimited by double quotation marks ("). My HTML is as following:
sqlString = "UPDATE galleria SET image_description = @image_description WHERE id = " + image.Id; …
Loyalar
  • 2,131
  • 4
  • 24
  • 44
0
votes
1 answer

Replace quotation marks with \"

I am working with a html-page with some javascript on it. What I'm trying to do is to show a message and a button after pressing submit-button. On pressing this new button the document state should go to its previous state. My attempt: function…
Danny Lo
  • 1,553
  • 4
  • 26
  • 48
0
votes
2 answers

Joomla adds an empty space in some components

I have a problem I've noticed a while ago with a site I'm building. I've been working with Joomla for a while now and I have never encountered such a problem. On some components, like featured content, search, hwdvideoshare and some more, quotation…
ritmanis
  • 95
  • 7
0
votes
1 answer

How to change the " on my site

I installed a new theme in my blog. I noticed that the theme is showing quotation marks " " as “ ”. Please help me to sort out this problem. I don't want these quotation marks as “ ”, I want them simple " ". Please help.
0
votes
1 answer

Objective C - NSURL - Quotation mark

I have searched the website for answer without result so here I am with a question. I am using CouchDB and i'm going to use a view but the problem is that I can't use quotation mark (") in an NSURL when I'm creating a url for NSURLConnection.…