In a Low-Code app, I want to compose a URL to copy to clipboard that uses a value from a text input.
This text input will contain a '\', but for the URL to work, it would need to be escaped to '\\'.
Is there any way to make this escaping work when copying to clipboard?
Hi Matthijs,
There currently is no way to modify the text coming from the input before it is used in the 'Copy to clipboard' action.
A way to make this work right now would be to use an IAS component combined with the 'On finish' event. You could create the text input and copy button in the IAS. On finish of the script the already escaped text can be outputted from the script and copied to the clipboard using the event. Note that this has the downside that the input will no longer be part of the app itself and this cannot be used in data linking.