String Handling

0
How to convert ABC to 'ABC' in Mendix?   how to append single quotes to a string in Mendix.
asked
2 answers
0

If this is a adding quotes around a String, then the simplest way is to just use string concatenation. For example, if your String is in a String variable called $Test, then you could use a Change Variable action. You will need to escape the quotes.

 

'''' + $Test + ''''

 

I hope this helps.

answered
0

Hi sandip

                 Try with this,

   

                                    ' ' ' ' + ABC + ' ' ' ' ===>'ABC'

 

 

 

 

answered