Hello, I have a problem with splitting a table, I enter ean13 codes in a textarea with a line break, so I do a split in order to retrieve the EAN13 codes one by one, but it doesn’t seem be done.
is the correct expression, no need to escape the \. Can you open your server action in code view and check what is the exact split expression added in the code of your server action?
As @teodor suggests, If you open the API file in code view it will have escaped the \ when saved leaving .split('\\n')
remove the extra escape and it works