I have got a php page that grabs specific cell data from my google spreadsheet.
The problem is that google decides to echo back the cell data in the worst way possible.
If I request C8 I get string(2) "23" as a response instead of just 23.
This happens 25~ times depending on how many cells I request - how can I use jQuery to remove ALL cases of string(2) or string(whatever) and perhaps the quotes as well.
Right now I'm stuck with garbage like <p class="cellone">string(2) "43"</p>
I'm looking to turn them all into <p class="cellone">43</p> etc.
Is there a relatively simple way to remove all this garbage string related text?


Reply With Quote
, I'll give that a shot today. Much appreciated.

Bookmarks