regexreplace issues I'm having
Posted: 11 Mar 2021 15:12
hey all...
for an input like
but failing and I can't see why.
then I'd like, from this input
for an input like
I'm trying to get a flat list likeU$ 199,90
U$ 19,99
item 1
U$ 9,90
U$ 1,98
item 2
U$ 13,90
U$ 2,98
item 3
U$ 7,90
U$ 0,98
item 4
using thisitem 1, item 2, item 3, item 4
Code: Select all
$in = regexreplace(<clipboard>, "^" . "[\\U]" . "[\\$ ]" . ".+", ", "); text "$in";then I'd like, from this input
to have it added of items, this being the resultitem 1
item 2
item 3
item 4
and I have no clues on how. help, please...item 1 (price= U$/user rating //comments: ...//[age rating: {USA}, {EU})
item 2 (price= U$/user rating //comments: ...//[age rating: {USA}, {EU})
item 3 (price= U$/user rating //comments: ...//[age rating: {USA}, {EU})
item 4 (price= U$/user rating //comments: ...//[age rating: {USA}, {EU})