This string util method removes single or double quotes
from a string if its quoted.
for input string = "mystr1" output will be = mystr1
for input string = 'mystr2' output will be = mystr2
@param s value to be unquoted.
@return value unquoted, null if input is null.
This string util method removes single or double quotes from a string if its quoted. for input string = "mystr1" output will be = mystr1 for input string = 'mystr2' output will be = mystr2
@param s value to be unquoted. @return value unquoted, null if input is null.