Skip to main content
Solved

JSON widget - remove or replace quotes

  • June 30, 2025
  • 3 replies
  • 19 views

gregkay
Forum|alt.badge.img+1

Hi all,

Is it possible to get the JSON widget to not display the quotations for string values?

Tried the expression builder replace but that does not remove the quotes.
eg.  [Get MyJSON.JsonResult| replace(‘”’,’’)]

Really like simplicity for using this widget for dynamic KVs as well as default appearance for this widget looks great.  I’ve not been able to nicely recreate in HTML.

Cheers

Best answer by hzmndt

@gregkay 
I don't see a way to remove the " for the string, wondering what's the use case here to remove the quotes? 

3 replies

hzmndt
Staff
Forum|alt.badge.img+9
  • Staff
  • Answer
  • July 2, 2025

@gregkay 
I don't see a way to remove the " for the string, wondering what's the use case here to remove the quotes? 


gregkay
Forum|alt.badge.img+1
  • Author
  • New Member
  • July 2, 2025

@gregkay 
I don't see a way to remove the " for the string, wondering what's the use case here to remove the quotes? 


Thanks,  the use case is purely aesthetics.
I've managed to get a HTML (not my strong suit) widget looking relatively similar.


AymanC
Forum|alt.badge.img+13
  • Bronze 5
  • November 16, 2025

Hi ​@gregkay,

 

If you escape the “ by using a \, it should work. e.g:

 

| replace(“\””, “”)

Kind Regards,

Ayman