I'm trying to get the content of a string within a string, delimited by double quotation marks ("). My HTML is as following:
<body>
<div>
sqlString = "UPDATE galleria SET image_description = @image_description WHERE id = " + image.Id;
</div>
</body>
and I'm trying to get the
UPDATE galleria SET image_description = @image_description WHERE id =
as a single string via my javascript. I know this is probably possible using indexOf or some related method, but I can't seem to get it to work.