03-06-2025 05:14 AM
Hi Community,
For a voicebot in Chatlayer I need to strip characters from an input, when asked e.g. a customer number. When the input is "Yes, my number is 123456" I only want to capture the 123456. I tried with a regex in an collect input block and store the value in a variable, but that does not work.
Secondly I tried to use the initial input variable and use the Action Block with a Code action to code a ResponseBuilder as described in https://docs.chatlayer.ai/integrateandcode/code-action
Here I am trying to use the initial variable, use a regex to clean up the input and store the output it in a second variable. This would then be digits only.
Has anyone solved this or has any other way of cleaning an input?
Thanks!
03-07-2025 06:20 AM - edited 03-07-2025 06:21 AM
Hi Edwin,
Thanks for your query. Let me reach out to the Chatlayer team and I will get abck to you with some guidance on how best to proceed.
Thanks and kind regards,
03-11-2025 07:59 AM
Hi Shahzad,
I asked internally some coders and they came up with this working solution:
First I collect input in a variable {Cust_ID}
then I use the Action node with a code action. I assign as argument a new variable CustID with value of Cust_ID.
Then I was given this code:
This is a working solution, but when you have better ideas, I'd love to hear them.
Thanks!
Edwin.