Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
2answers
168 views

Do I need to wrap quotes around font family names in CSS?

I remember hearing a long time ago that it was considered "best practice" to wrap quotes around font names that contain multiple words in the CSS font-family property, like this: font-family: "Arial ...
8
votes
3answers
1k views

Using left double quotation marks in strings in VB

In following code, the usage of the string "“" (i.e. a left double quotation mark inside a string) results in a compile error in VB.NET: StringVar = Replace(StringVar, "“", "“") What’s ...
4
votes
1answer
246 views

How to force a syntax-highlighting refresh in emacs?

In emacs, especially when ssh'ed into a remote machine, there's a delay between when I type a closing quotation mark and when emacs updates the syntax-highlighting to reflect that change. For a few ...
3
votes
2answers
385 views

Split/tokenize/scan a string being aware of quotation marks

Is there a default/easy way in Java for split strings, but taking care of quotation marks or other symbols? For example, given this text: There's "a man" that live next door 'in my neighborhood', ...
2
votes
3answers
107 views

Quotation mark in string

I have some string with variable, e.g. string path = @"C:\one\filename.exe" + arguments arguments: "-s -c -d > "somedirectory\some file.txt"" I've problem with redirection output to ...
2
votes
3answers
210 views

Java library that escapes quotation marks

I often have to escape many quotation marks in a String. Is there a library that provides String functions such as this. It's easy enough to write, but something that had lots of different ...
2
votes
2answers
236 views

Unmatched quotation mark issue in SAS

As is known to all, SAS needs special care to quotation marks inside a sentence. E.g. %let quoted="I'd like to"; data temp; set temp; quoted="&quoted"; run; error is encounterred when ...
1
vote
2answers
108 views

String search using regular expressions

i am trying to match strings that dont contain quotation marks but they can contain escaped quotation marks. when i say string i mean quotation marks and a string inside them. i am using this ...
1
vote
3answers
112 views

What Quotation Marks Should I Use In CSS? [closed]

Possible Duplicate: Which type of quotes we should use in css background url (“…”)? Single, double or no quote needed? Simple question. What quotation marks should I use ...
1
vote
1answer
258 views

Removing whitespace-characters, except inside quotation marks in PHP?

I couldn't find any similar question, so I start a new one. I need to remove all whitespace from string, but quotations should stay as they were. I'm building a personal kind of minifier. Here's an ...
0
votes
1answer
33 views

Comparing strings with quotation marks

Hello guys i'm trying to create a program in C# where I am comparing two strings in which within the strings they have the double quotation marks. My problem is how do I compare them for equality ...
0
votes
2answers
33 views

Python CSV : field containing quotation mark at the beginning

I am trying to read a CSV file containing a line like following: test,"test,"test,test,test,test There is a problems with the quotation marks (There are six fields, but they are retrieved as five ...
0
votes
1answer
44 views

quotation marks in a javascript bookmarklet

I wrote a javascript bookmarklet which works well. It is rather long and it contains many single and double quotation marks as in the following toy example: javascript:html="<a ...
0
votes
6answers
79 views

Escaping MySQL Query issue

I'm terribly bad at keeping MySQL queries straight, but that aside I have one query working for some data input, but not all. My guess is quotation marks getting escaped where they should be. I have ...
0
votes
2answers
118 views

c++ - String formating problems

I am having problem formating a string which contains quotationmarks. For example, I got this std::string: server/register?json={"id"="monkey"} This string needs to have the four quotation marks ...
0
votes
1answer
46 views

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 ...
0
votes
0answers
26 views

Are apostrophes valid containers for HTML element attribute values?

Usually HTML element attribute values are marked with a quotation mark, like <input type="hidden" value="test" /> Sometimes, however, you see code like <input type='hidden' value='test' ...
0
votes
2answers
44 views

php multi Quotation marks

I meet a headache problem. there are too many Quotation marks in my code make me headache. I tried both of these method, but all the way are make links broken. I cheked it in chrome, In elements, I ...
0
votes
4answers
235 views

mySQL problem when retrieving result with quotation marks

I'm having a problem with an SQL query on a php page. I'm pretty new to php so stick with me. I have successfully created a query to select everything, but I want to include a WHERE in the query. ...
0
votes
2answers
244 views

How to write quotation marks to a .txt file using fwrite

I have an html form where users can submit data. When they submit I am taking that data and writing it to a .txt file. I am having trouble adding quotation marks around my data. I need it to do the ...
0
votes
1answer
93 views

Remove quotation marks when exporting

How do you remove quotation marks then exporting String values of multiple words? For example: "Compact Lamber" Amazonka Eri "AM 10-6-7" Should be: Compact Lamber Amazonka Eri AM ...
0
votes
3answers
110 views

How to resolve this URL

I have the following code: onclick='window.open(" *** ","List","scrollbars=no,resizable=no,width=400,height=280");' I want to replace the *** with this: <%# "~/pages/AttchmentViewer.aspx?ID=" ...
0
votes
1answer
115 views

Rails: Is it not possible/necessary to html_escape all email text (in the view)?

can anyone tell me if it is normal and OK for Rails to turn a normal quotation mark (") into & q u o t ; (and not keep the normal quotation mark) when it is html_escape-d in an email view? I.e.: ...
0
votes
3answers
3k views

Replacing quotation marks in Javascript?

For a web app I'm making, I'm going to be getting text strings coming in, occasionally which contain quotation marks. Because I am then going to be document.writing the string, they need to be ...
0
votes
3answers
1k views

replace symbol in javascript

Does anyone know how can I replace this 2 symbol below from the string into code? ' left single quotation mark into ‘ ' right single quotation mark into ’ " ...
0
votes
1answer
935 views

echo nested quotation marks in tcsh

I have a tcsh script that generates a text file. One of the lines in the text file is: bla bla bla 'foo foo foo "bar bar bar"': etc etc; Note the nested ' and " and also the : and ; that must be ...
-4
votes
2answers
280 views

string needs double quotationmarks VBA now confused to which quotationmarks are what [closed]

I need to append a string to a text file which has double quotation marks throughout it. How do I do that cause VBA is very confused at the moment What the string should say/append the text file to ...