Tagged Questions
0
votes
3answers
751 views
Remove double quote in json_encode()
I want remove double quote in my json_encode, that is my code:
<?php
require_once 'config.inc.php';
//## Clase Base de Datos
require_once 'Database.class.php';
//## Obtengo los parametros pasados ...
2
votes
1answer
130 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
3answers
127 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 ...
0
votes
2answers
657 views
Using php preg_replace to parse out target double quotes in JSON string
I've been beating my head on this one, and can't figure out a regexp to accomplish the following:
Input string (this is JSON data surrounded by lots of other JSON):
...