Questions related to the use of double-quotes in different programming languages.
1
vote
3answers
1k views
Regular expression for apostrophes/ single quotes with double
I'm currently working with a regular expression (in Javascript) for replacing double quotes with smart quotes:
// ie: "quotation" to “quotation”
Here's the expression I've used ...
2
votes
1answer
205 views
double-quotes “\”"?
I'm trying to use quotes inside of quotes. It works inside of a text box, but not where I need the string. for example, the first line of code works, but I need the string to be a variable.
...
0
votes
2answers
83 views
Integration PHP + Javascript
I have a problem with integrations in the php code in javascript within single quotes
I need to put the variable $video that will get the id of a YT video, instead of the id of the video ...
2
votes
1answer
129 views
How to replace two or more consecutive double quotes?
For the strings like:
""abc"""
It should be:
"abc"
But my attempt is failing by using:
preg_replace('/[\"]+/','"',$input);
0
votes
2answers
104 views
String replace does not work in javascript (with double quotes)
Please look at the following code, If i do not perform the "Sanitary" steps in the function the code does not replace the string values.
can some one help me understand this?
Complete code :
...
3
votes
3answers
127 views
chinese charactors eat other charactor when lua loadstring
when i load data in lua by loadstring, some magic chinese charactors fail.
RawData = '{a="a朶b"}'
Data = loadstring("return " .. RawData)()
that's because:
"朶" 's ascii char(gbk encoding) is 0x96 ...
0
votes
1answer
571 views
CSV remove field value wrap quotes
I'm attempting to write a list to a csv, however when I do so I get wrapper quotes around my field values:
number1,number2
"1234,2345"
"1235.7890"
"2345.5687"
Using this code:
with ...
0
votes
1answer
197 views
read string between two double quote php
good day, I have a UML class diagram exported to an XML file, and the code basically and repeatedly is like this:
<UML:Class name="Zip Code" isLeaf="false" ...
0
votes
2answers
394 views
Double encode for JSON
In most of my AJAX functions I have to double encode free text entered by a user, i.e. I have to do encodeURIComponent(encodeURIComponent(myString)).
If I do it just once most symbols except double ...
-1
votes
2answers
88 views
How to add quote marks to text in HAML code
I have the following HAML code
//add some text
%div.text
<%= answer.text %>
The result in the browser is as such
How can I add quote marks to this text so that is shows "test remuse" ...
1
vote
1answer
364 views
PHP Array to json, how to get rid of some double quotes?
I have a small but weird problem while encoding php arrays to json.
I need to prevent array() from adding double quotes around specific values.
Here is the php array:
...
0
votes
3answers
503 views
Why should we escape double quotes,single quotes creating queries in PHP
Why should we escape double quotes,single quotes creating queries in PHP? are there any particular benefits when doing that? or it is just a good practice?
0
votes
3answers
177 views
write string 0'-1" into sqlite android database
I cant seem to get this right so I am asking what am I overlooking in my code. here's what I've got in my code:
newLeaseData = "INSERT INTO " + enterLogLN + " (Date, "
+ "StockTank1Ft, ...
1
vote
2answers
201 views
AppleScript inserts string into application inbetween double quotes
I just purchased Alfred App for my Mac and I want to use this script I found online:
---------------------------------------------------
--Modified by: Pontus Sundén, http://psu.se
--Icon from: ...
6
votes
4answers
420 views
what does ' ', and “ ”, and no quotes mean in Javascript?
I realized I've been switching between them with no understanding as to why, and am finding it hard to search for.
0
votes
3answers
2k views
Regex escape questionmark and double quotes
I have data with several occurrencies of the following string:
<a href="default.asp?itemID=987">
in which the itemID is always different. I am using C# and I want to get all those itemIDs ...
4
votes
1answer
246 views
Make H2 treat quoted name and unquoted name as the same
H2 seems to make a difference between name with quote and name without quote. Is there a way to make it treat them the same way?
Here's the tests that I've done :
CREATE TABLE test (dummy INT);
...
2
votes
3answers
564 views
How to remove commas between double quotes in PHP
Hopefully, this is an easy one. I have an array with lines that contain output from a CSV file. What I need to do is simply remove any commas that appear between double-quotes.
I'm stumbling ...
0
votes
0answers
199 views
double quotes and backslashes inside command line parameters
I made console exe that accepts 4 parameters, they usually look like this :
parameter1 : aaa
parameter2 : AddFile("
parameter3 : ");
parameter4 : subfolder1\subfolder11\
How should I pass these ...
-1
votes
1answer
53 views
MySQL insert issue
I am attempting to insert data into a table that contains a lot of single and double quotes.
INSERT INTO vulnerabilities_internal_test (device_type, ip_address, user_tag,
repositoryID, severity, ...
3
votes
4answers
771 views
Perl Regex: How to remove quotes inside quotes from CSV line
I've got a line from a CSV file with " as field encloser and , as field seperator as a string. Sometimes there are " in the data that break the field enclosers. I'm looking for a regex to remove these ...
-1
votes
4answers
275 views
Replace empty string in double quotes in php [duplicate]
Possible Duplicate:
Search and replace inside an associative array
I think this may have been asked before. But I just want a simple solution.
I have an array like this:
Array ( ...
0
votes
4answers
559 views
Assigning value to string having special characters like \ " and others in java
Can somebody please tell me how can I assign following value to a string in java.
...
0
votes
0answers
52 views
What is the difference between double quotes and single quotes in jQuery [duplicate]
Possible Duplicate:
Difference between single quotes and double quotes in Javascript
I have a doc in the id attribute of a HTML tag:
I read the jQuery dot in ID selector? and ...
1
vote
2answers
2k views
Special characters and double quotes issue in PHP
I have this kind of value in my db column,
Judge-Fürstová Mila "Ut enim ad minim veniam"
I use PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8" to handle all my special characters,
class ...
1
vote
2answers
241 views
Ruby on Rails adding double quotes to “find” function
I'm new to ruby on rails, and I'm having an issue with the find function.
I created a new web app which connects to a legacy Oracle database using the oracle enhanced adapter gem.
When I run the ...
1
vote
4answers
318 views
Remove comma inside quoted string in a comma separated list
I have a string
$str = '1,2,3,4,5,"6,000",7,8,9';
How can I clean it up to:
'1,2,3,4,5,6000,7,8,9'
0
votes
1answer
106 views
java xgettext extract keys inside quoted text
I use Apache Velocity as template manager, inside HTMLs files I have calls to gettext, like in the following piece of code:
<img alt="$i18n.tr("Some Text")" title="$i18n.tr("Some Text")" ...
0
votes
4answers
59 views
Java string interpreted wrongly in SQL
There is an string[] likely;
This array stores the name of column of database table dynamically while runtime.And the program understand the size of the likely in runtime.
Now to put this in sql query ...
0
votes
2answers
203 views
How to search from sqlite w.r.t a string with single quote and double quotes in android
I am querying sqlite from android using cursor in the following way
Cursor searchCusor = getCursorForSearchQuery(str);
where str is a string. This string may contain single quote and double quotes. ...
0
votes
2answers
98 views
JRuby statement in a bash script with environment variables
I have a Rails application which uses Resque for a job queue. The Resque worker class is "JobDo" and is in app/workers/job_do.rb
I have a script (jobdo.sh) which will put a job onto the queue:
jruby ...
0
votes
1answer
49 views
regexp: tw- prefixed words with optional quotation marks
I am struggling to build a regexp to catch words starting in tw (or Tw, or TW) whether they are in between quotes (single or double) or not.
So far '\b[tT][wW][a-zA-Z0-9]*' catches all the tw, Tw, and ...
2
votes
4answers
781 views
match a double quoted-string with double-quote inside
I have this python string:
string = '"/dev/null" "" "19/1333329478.9381399" 0 1 "cam-foo" 64 900.0 "Foo x rev scan of test" "/usr/bin/env ""PATH=/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:$PATH"" ...
0
votes
2answers
70 views
What does #{$$} inside a double quoted string in Ruby on Rails ?
I have a doubt concerning #{$$} inside a double quoted string, in concrete I have this string:
"#{command}#{$$}#{(Time.now.to_f * 1000).to_i}"
If I execute "#{$$}" in console I get an integer ...
1
vote
4answers
198 views
regex regular expression to match most of URLs needs improvement
I need a function which will check for the existing URLs in a string.
function linkcleaner($url) {
...
0
votes
1answer
80 views
My shell has to interpret the double quote
I have to write a shell that can interpret double quotes.
I've written a basic shell.
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main ()
{
int i;
char * ...
3
votes
3answers
351 views
Accomodate two types of quotes in a regex
I am using a regex to replace quotes within in an input string. My data contains two 'types' of quotes -
" and “
There's a very subtle difference between the two. Currently, I am explicitly ...
0
votes
1answer
317 views
C# form builder using JavaScript (onblur) to replace double quotes - conflict with 2 double quotes within single quotes
I'm modifying a custom form builder app written in C# by adding onblur to replace problematic characters like <> /\ and hopefully " . I can get all replaces to work except for the double quotes ...
0
votes
3answers
125 views
preg_replace function not functionin on php variables containing doublequotes(")
$words is creat"ive
$string is Recreat"ive
both are obtained from database through result sets
function highlightWords($string,$words) {
$string = preg_replace("/$words/i", "<font ...
2
votes
3answers
633 views
Perl - Regex to match double quoted text
Need some help with regex matching please. I'm trying to match a double quoted string of text, within a large string, that itself can contain pairs of double quotes! Here's an example:
"Please can ...
0
votes
3answers
889 views
In Python, How to remove various unwanted quotes in a string to create/convert to a dictionary
I have a string in the following form:
testline = "{""key1"": ""value1"", ""key2"": {""value2-subkey1"": ""value2-subvalue2""}}"
I would like to replace the double-double quotes with a ...
0
votes
2answers
3k views
Adding a registry key in windows with quotes needed in the data using a batch script
Little Willis here. I am trying to using a batch script to edit an existing registry key that is used when double clicking a .jar file. The issue is that the data that I'm trying to enter contains ...
1
vote
2answers
371 views
matching doublequotes in PHP regex
I'm trying to write what should be a fairly simple regex for a PHP script to match tag: followed by a word in double quotes. I want it to return just the value inside the quotes, minus the quotes ...
0
votes
1answer
683 views
How can i escape double quotes from a string in php?
I've been trying to solve this but no luck. This is my code.
$replace1 =str_replace('hreflang=\"'.$arr['variantslang1hid'].'\" ...
0
votes
3answers
625 views
Python CSV module - quotes go missing
I have a CSV file that has data like this
15,"I",2,41301888,"BYRNESS RAW","","BYRNESS VILLAGE","NORTHUMBERLAND","ENG"
...
0
votes
3answers
158 views
Unable to frame sql query correctly from java
I am trying to query data from my app, through postgresql DB. What I want to achieve is from "Users" where "Username"='stackoverflow'
If this query is written in the SQl editor and run, it gives the ...
7
votes
5answers
423 views
perl encapsulate single variable in double quotes
In Perl, is there any reason to encapsulate a single variable in double quotes (no concatenation) ?
I often find this in the source of the program I am working on (writen 10 years ago by people that ...
-1
votes
1answer
762 views
StringBuilder.AppendFormat double quote issue
I want to build a string with content of some xml nodes, like
StringBuilder xmlString = new StringBuilder();
xmlString.AppendFormat("<Product Name=\"{0}\">", name);
But the result I got by ...
1
vote
1answer
5k views
How do I put double quotes in a string in vba?
I want to insert an if statement in a cell through vba which includes double quotes.
Here is my code:
Worksheets("Sheet1").Range("A1").Value = "=IF(Sheet1!A1=0,"",Sheet1!A1)"
Due to double quotes ...
2
votes
1answer
908 views
ASMX web method receiving unescaped double quote in parameter, JSON
My HTTP REQUEST contains a valid JSON string having the double quote in the middle of the name "jo\"hn" escaped as seen here (captured by Fiddler Web Debugger)
{"name":"firstName","value":"jo\"hn"},
...
