Computer programming languages' facility for embedding text in source code, also known as String literals

learn more… | top users | synonyms

1
vote
3answers
30 views

Javascript function with vars on PHP print: quotes

I was just wondering if there is a better way to write down this PHP vars passed to a javascript function called inside a PHP print.: while($nav = mysqli_fetch_array($nav_db)){ print '<li> ...
0
votes
2answers
37 views

Missing quotes in JSON object. How to add them in?

I've got a slight problem when passing parsed JSON variabled through jqGrid. I am querying a MS Access .mdb file. The problem is there is an ID field which is an autonumber integer field in MS Access ...
0
votes
4answers
36 views

Single quote within single quotes PHP

I have a HTML achor tag like below: echo '<a href="javascript:tempBuy('.$res_get_price[0][0].','.$res_get_price[0][1].','.$res_get_price[0][2].','.$dt_str.')">'.$res_get_price[0][0]; And the ...
-1
votes
3answers
54 views

How to remove error, probably caused by STRING VARIABLE with single quotes put in SQL statement ASP.NET C#?

my program errors when I put these set of numbers enclosed in single quotes ( string sql1 = "( 11111111111111, 222222222222 )"; ) into a string variable and use that variable in an SQL ...
0
votes
5answers
43 views

Solving simple quotes and Php

Sorry if that question has been already answered but what i found on the internet didn't help me that much.I got a problem with php and simple quotes Here is my code : echo "<span ...
1
vote
3answers
41 views

How to put css selectors into php generated html code

I'm trying to make one little prototype on php (in which I'm novice) and wordpress, and I can't find whot is wrong whith this: this code is fine: <?php mysql_connect( "localhost", "root"); ...
0
votes
1answer
36 views

Strings are being printing inside quotes

Example: >>> print "How do you do" It prints as 'How do you do' or >>> x = "How do you do" >>> print x 'How do you do' I have just started learning python. All my ...
0
votes
1answer
17 views

Javascript: Error in String Concatenation

So I have this javascript function: function show_courseline (course_index, repeats) { var s = ""; var count = 0; while (count < repeats) { s = s + 'Number: ' + ...
0
votes
2answers
18 views

Parsing Exchange Recipients from a string with Regex

I'm about to break this down into two operations since I can't seem to figure out the regular expression to do it in one. However, I thought I would ask the brain trust here to see if anyone can do it ...
1
vote
1answer
63 views

regex works on regex tester but not in c++

I am trying to get the content between quotes from a file, and I am using regex. This is the regex I am using: id=\"([^\"]+)\"|title=\"([^\"]+)\" As you can see, every special character is ...
0
votes
3answers
56 views

unable to pass wget a variable with quotes inside the variable

I am trying to script a wget command to download a web page and all it's attachments and jpegs etc. When I enter the script by hand, it works, but I need to run this over 35000 times to archive an ...
0
votes
4answers
47 views

How to put quotes correctly in this statement

I need to return an input box from a function but i could put the quotes correctly. Any one please help me to solve the error. <?php return " <input style='background-color:#CCC;'type='text' ...
0
votes
1answer
53 views

Double quotes with Sql Update

I'm trying to update a database with OleDb and .Net4.5. My updates are working good , even if i use simple quote on a filed, but, when i input a double quote on a field, oledb raise an exception ...
1
vote
1answer
17 views

Need help replacing single quotes in bash script

i am trying to replace the quotes in a string in my bash script. i have a variable that will be placed in a mysql query that may possibly have a single quote in it. i want to replace any ' with \' so ...
3
votes
2answers
61 views

BASH pass Variable to Function

This is my first attempt at BASH and I am having a small problem. The intent of this script is to scrub ZFS pools and create a log file. The code is working as intended, except for line 19 below. ...
2
votes
1answer
60 views

Autopair and Python strings

I use autopair-mode globally for intelligent quote/paren/bracket pairing. It helps in most situations, except one. It's kind of a pain in the ass using Python's multi-quote strings. Typing quote once ...
0
votes
1answer
48 views

Parsing a string in python without knowing is in the string

I'm trying to parse a random string between a set of quotation marks. The data is always of the form: klheafoiehaiofa"randomtextnamehere.ext"fiojeaiof;jidoa;jfioda I know what .ext is, and that ...
0
votes
1answer
31 views

zsh: parameter expansion inserting quotes

I'm having trouble during parameter expansion in zsh: It's enclosing my variable in quotes. Here is my script. (Apologies for the noise, the only real important line is the last one with the find ...
3
votes
4answers
67 views

single and double quotes in php variable

How can I combine this code with all single and double quotes as it should be. I have tried several combinations and I can't make it work. This one is my last try so please help. What would be a good ...
0
votes
0answers
14 views

how can i replace: “ ’ ” in a string passed by this->data?

i want to delete quotes and apostrophe in a string. Users write a string in input box like: “ka’an”" , note the quotes “ and ” and apostrophe ’ .So my question is: How can I delete those ...
0
votes
1answer
50 views

executing dynamic shell script command that uses mixed quotes and asterix

I have the following which I'm trying to script. I've hit a wall with trying to cater for the mixed quotes as well as asterix. This is what I have cmd_1="/usr/local/nz/bin/nzsql -d ${SOURCE_DB} -c ...
1
vote
2answers
56 views

php html multiple quotation marks invalid code

how can i make sure these quotation marks become valid in PHP? <? echo "oaktree.addItem('test1<img src='img.png'>', branch1, '');"; echo "oaktree.addItem('test2<img ...
0
votes
1answer
25 views

Why people often use \` instead of \' when quoting in software document like README or INSTALL, etc.? [closed]

As title, many people quote like `a-noun' in software documents. They use \` instead of \' when quote and use \' for unquote. Does anybody know the reason?
0
votes
0answers
52 views

C Adding a single quoted character to a character array?

So I found myself doing something that I thought was 100% straightforward...but it has stumped me. I have part of the following class function: std::string BigNumber::print() { bool zerosBroken = ...
0
votes
3answers
46 views

Mixing PHP Echo and Javascript [closed]

Strange question i have echo "<tr><td onmouseover="xmlhttpPost('obrada.php', 'prva', 'osx-modal-data'); return false;"> <a href='#' ...
-3
votes
2answers
61 views

How to replace ” in php? [closed]

I am receiving responses from third party using web service and the information has double quotes like ” the one found in the books/printed on the keyboard button. This double quotes creates issues ...
0
votes
0answers
25 views

MicroSoft Office smart quotes showing up in Internet explorer

I have a user who is using IE9 and when he enters a single quote from the keyboard into a web form on an application I wrote, it is putting in the fancy curved quotes the MS Word does with the smart ...
0
votes
2answers
87 views

Given the powerful macro system, are `quote' and `quasiquote` redundant in modern Scheme?

Modern Scheme (and its descendants like Racket) features a very powerful hygienic macro system. It seems to me quote and quasiquote have lost their historical position in defining (unhygienic) macros ...
1
vote
2answers
233 views

Sublime Text and Clojure: Don't pair single quotes

Is there a way to get a syntax type to define keyboard shortcuts, or to set a keyboard shortcut to depend on the syntax type (perhaps under the "context") setting? My quoted lists '(1 2 3) get ...
4
votes
4answers
110 views

how to remove quotes of any string when preparing queries

$desc = 'DESC'; $getRecords = $conn->prepare('SELECT * FROM `courses` ORDER BY `id` :sort LIMIT :limitInc, :limit '); $getRecords->bindValue(':limit',$limit,PDO::PARAM_INT); // working ...
0
votes
1answer
52 views

bash variable string with quotes and double quotes

I need to store a string in a variable on bash. Here the string... 7;310000000007;1390;30000001390;119;130000000119;;;;;939738;30;ST;DESCRIPTION TEXT TEXT " TEXT ' TEXT text;20130318; 1.40;; ...
0
votes
1answer
43 views

Using awk in popen gives “runaway string constant” error

The following line FILE *fp=popen("ls -h --full-time | awk '{printf \" %-70s%-10s%-20s%-30s\n \", $9,$5,$6,$7}' ","r"); gives the error awk: Line 1 : runaway string constant "%-70s%-10.... I ...
0
votes
1answer
25 views

dquote> result of a execution a program in linux shell

when i execute a script in linux shell, i have a output like these: dquote> What´s the meaning? Thanks, Leonardo
0
votes
2answers
110 views

single and double quotes in sql insert

I had an issue come up when working with mySQL. I have a table of parts with part numbers and descriptions. I am trying to insert over a thousand parts and need to get the formatting to work for every ...
1
vote
1answer
72 views

Use string variable as Applescript command argument

I'm trying to do the following: on cleanup(x) tell application "Finder" clean up window 1 by x end tell end cleanup cleanup("name") However since x variable is a string, the clean ...
1
vote
2answers
86 views

Replace string everywhere except if its within quotes

I would like to replace all :) by :D, except if they are within quotes " Example 1: Hey man :D, how're you? :) My friend told me "this can't be true :)" becomes Hey man :D, how're you? :D My ...
0
votes
1answer
56 views

PHP variables inside an array wrapped in single quotes

I am using Amazon API to display dvd and bluray product information on my website. I have the following PHP code that looks up product information based on its ItemID. $movies = ...
1
vote
2answers
27 views

Include quotes in inline style

I have a class that I apply to a span to format it a bit different to show an action someone must take. <p>Example of styling a <span style="background-color:#ccc; color:#066; ...
0
votes
2answers
62 views

Differences between slashes and ' ' [closed]

Sorry if there is a question that's very similar to this or if there is answer somewhere else but I have a question that's been on my mind lately. Most people that are versed in programming languages ...
0
votes
1answer
21 views

Javascript Bookmarklets with Quotes

I have had a problem with making javascript bookmarklets where the code inside contains both "" quotes and '' quotes. Say for example, my code was as follows, <!DOCTYPE HTML> <html> ...
0
votes
2answers
37 views

Shell Quotations with and without environmental variables

Here is the question: When the shell is reading the command-line, what is the difference between text enclosed between double quotes (") and text enclosed between single quotes (')? You need ...
2
votes
1answer
203 views

Escape single quotes ssh remote command

I read any solutions for escape single quotes on remote command over ssh. But any work fien. I'm trying ssh root@server "ps uax|grep bac | grep -v grep | awk '{ print $2 }' > /tmp/back.tmp" ...
0
votes
2answers
120 views

Convert Quotes Using htmlspecialchars AND Keep HTML Tags in PHP

I have a hidden input tag that I want its value to have quotes in it. How would I escape the quotes so that I can use it for the value? HTML <input type="hidden" name="edited_terms" ...
1
vote
2answers
111 views

Databinder.Eval double quotes

I have a problem and I can't figure it out how to solve it. I search for solutions but they did not work. So, I have a Datalist with ItemTemplate. I need to add google analytics on onclick event to ...
0
votes
1answer
104 views

Enable hbm2ddl.keywords=auto-quote in Fluent NHibernate

I have made a tiny software tool that allows me to display or run SQL generated from NHibernate. I made this because hbm2ddl.auto is not recommended for production. I have one problem: when I ...
0
votes
5answers
40 views

What is the most aesthetic way to to escape a single quote within a single-quoted string in (ba)sh?

In a (ba)sh script of mine, I have, for example: MYVAR='Alice says: "Hello, Bob." But Bob isn't listening.' This is a syntax error, since the ' in isn't ends the single-quoted string. I know I can ...
5
votes
3answers
192 views

Double quotes vs asterisk filename expansion in Bash

In the directories ~/temp/a/foo/ and ~/temp/b/foo foo/ I have some files named bar1, bar2, bar bar1, bar bar2, etc. I am trying to write a line of Bash that copies all these files in a directory ...
0
votes
1answer
76 views

Reading from InputStream until double quotation marks

Need help reading from InputStream to a list of bytes until quotation marks. The problem is, InputStream reads bytes and I'm not sure how to stop it reading when it reaches quotation marks ... I ...
0
votes
0answers
255 views

Removing nested double quotes from within a json string (Twitter data)

I have the following problem with nested quotes within a string: As part of a json block, there are often strings which themselves contain double quotes, which is the only string limiter allowed in ...
-5
votes
1answer
58 views

quotation marks are showing up backwards

Whenever I use quotation marks in text to display in my code, both the starting and the ending quotation mark appear as an ending quotation mark. Why could this be happening? I thought it might be the ...

1 2 3 4 5 15