Hi,
So I have this type of data: “Fees : $10.1123”
This works:
{
“Command”: “executeScript_Sandbox”,
“Target”: "return ${var}.split("Fees : “)[1];”,
“Value”: “varnodollarsign”
},
But if I also want to get rid of the dollar sign, like this:
{
“Command”: “executeScript_Sandbox”,
“Target”: "return {var}.split(\"Fees : “)[1];”,
“Value”: “varnodollarsign”
},
It doesn’t work anymore. Tried all kinds of brackets and quotes but to no avail.
It’s probably supereasy. Could anyone lead me in the right direction?
Thanks!