Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, All!
I have a string in tJavaRow
String S = "10;Str;\n20;Str2;
\n30;Str3
";How can I convert it into a Flow (get 3 lines at the output
10|Str1|
20|Str2|
30|Str3|
) ?
Hello ,
Maybe it's not the best way but i designed my job as such
In the tmap here is the regex row3.s.trim().matches("^[0-9]*$")
Output would be :
Regards ,
Amine
Hi, a better regex : "^\\d+$"
Send me Love and Kudos