The YAML syntax trims the first and last single quotes in a string.
Could you please try adding extra single quotes or surrounding single quotes by double quote as shown below?
‘DON’’T’ => DON’T
“‘STRING’” => ‘STRING’
The YAML syntax trims the first and last single quotes in a string.
Could you please try adding extra single quotes or surrounding single quotes by double quote as shown below?
‘DON’’T’ => DON’T
“‘STRING’” => ‘STRING’
Thank you, Hajime for the answer, but extra single/double quotes are throwing "Value is not accepted." error.
If you want to enclose the beginning and end of a string enclosed in single quotes, three single quotes are needed as the result of syntax.
Could you please try the following? ( Please note ‘’’ are all single quotes)
'''package_ABCD'''
Could you please raise a support ticket with your full YAML code that can explain the difference of behavior with/without single quotes?
Could you please raise a support ticket with your full YAML code that can explain the difference of behavior with/without single quotes?
Thank you, Hajime, created the ticket 00250908.
Hi Harish,
I confirmed your ticket and interaction.
Your target string that you want to wrap it by single quote is the name of variables.
The single quote char is not allowed for the variable name.
But if you would like to give a string include single quote as a placeholder string in the input box text, giving single quote in the definition of package variable may help you.
Please see below my screenshot that the variable ${Text_Key} is replaced by 'single quote' as the placeholder of input box.
Hi Harish,
I confirmed your ticket and interaction.
Your target string that you want to wrap it by single quote is the name of variables.
The single quote char is not allowed for the variable name.
But if you would like to give a string include single quote as a placeholder string in the input box text, giving single quote in the definition of package variable may help you.
Please see below my screenshot that the variable ${Text_Key} is replaced by 'single quote' as the placeholder of input box.
Thank you, Hajime.
I am using the package runtime variable in KM filter. I enclosed the variable with single quotes in the filter and it worked.