So I want to extract the values from a mulitline fields, so I can process each of the values from this field.
I'm splitting the fields, using the carriage, but it's not working ...
Any clues ?
(see example belows)
List thelista = Str.Elem
ents( retValUniqID.formFieldValue, '\r' )
Echo( thelista )
List thelistb = Str.Elements( retValUniqID.formFieldValue, Str.CRLF )
Echo( thelistb )
List thelistc = Str.Elements( retValUniqID.formFieldValue, Str.LF )
Echo( thelistc )
List theliste = Str.Elements( retValUniqID.formFieldValue, Str.CR )
Echo( theliste )
String bvalues = ''
bvalues = Str.R

eplaceAll( retValUniqID.formFieldValue, Str.CRLF, '-' )
List avalues = Str.Elements( bvalues, '-' )
Echo( avalues )
The first one isn't too bad, but I still get an 'r' ?
10:37:13,853 INFO {'11111','r22222','r33333','r44444'}
10:37:17,400 INFO {'11111\\r22222\\r33333\\r44444'}
10:37:18,645 INFO {'11111\\r22222\\r33333\\r44444'}
10:37:20,914 INFO {'11111\\r22222\\r33333\\r44444'}