Re: [SR-Users] Converting JSON string to normal string

2014-10-24 Thread Muhammad Shahzad
Thanks, i managed to use s.rm to remove quotes in single shot. Thank you. On Fri, Oct 24, 2014 at 3:20 PM, Daniel-Constantin Mierla wrote: > Hello, > > no transformation to "unquote", at this time probably chaining s.strip and > s.striptail would be an option. > > Adding transformations to "qu

Re: [SR-Users] Converting JSON string to normal string

2014-10-24 Thread Daniel-Constantin Mierla
Hello, no transformation to "unquote", at this time probably chaining s.strip and s.striptail would be an option. Adding transformations to "quote" and "unquote" can be useful indeed if json operation returns the full value. Cheers, Daniel On 23/10/14 21:02, Muhammad Shahzad wrote: > Hi, > > Us