From 9f5cdee9b71096493ef79ef9a19af2416abfbc54 Mon Sep 17 00:00:00 2001 From: Rahul Pidde <206018639+cx-rahul-pidde@users.noreply.github.com> Date: Thu, 9 Oct 2025 15:13:10 +0530 Subject: [PATCH] updated rexpression --- src/main/wrapper/ExecutionService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/wrapper/ExecutionService.ts b/src/main/wrapper/ExecutionService.ts index 20123524..2610e735 100644 --- a/src/main/wrapper/ExecutionService.ts +++ b/src/main/wrapper/ExecutionService.ts @@ -58,7 +58,7 @@ function transform(n:string) { } let r = ""; - if(n) r = n.replace(/["']/g, "").replace("/[, ]/g",","); + if(n) r = n.replace(/"/g, "").replace("/[, ]/g",","); return r; }