java - How do I remove quotes from a boolean value in a JSON string? -


i have:

string example = {"test":"true"} 

but want have:

example = {"test":true} 

how can convert first string second?

use regular expression and/or string class method 'replaceall'.


Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -