Dear VisualCron team and members,
I would like to ask you for help with regex replace function, where I need to replace each new line (\r\n) with new line and the SQL words (\r\n insert into [table] values(')
As an example let's say that I have these data:
Adam,20
Roman,30
And I want to get:
insert into [table] values ('Adam,20
insert into [table] values ('Roman,30
I decided to use the REGEX Replace function in this way:
{REGEX(Replace|
Adam,20
Roman,30|\r\n|\r\n insert into [Table] values (')}
But the result is:
\r\n insert into [Table] values ('Adam,20\r\n insert into [Table] values ('Roman,30
So the last part of replace argument is not taking \r\n as new line and it is pasting as text instead.
Is there any way how can I rephrase it to use \r\n as new line?
Thank you in advance :)
Best Regards,
Edited by user
2016-03-18T13:12:53Z
|
Reason: Not specified