What I'm looking for is similar to the Summerize List Items
node but without it inserting the line breaks between items in the list.
I tried accomodating for the line breaks included in the Summerize List Items output by using the Replace Text
node to replace 'returns' with nothing or space but the Text Replace node doesn't seem to recognise standard control characters like \r
and \n
.
I've achieved this with brute force using 20 Take from List
nodes and Append Text amounts other nodes… seems a tad crude.
Comments
What are you trying to
What are you trying to achieve here ?
I'm getting the same output list in
Append Texts
wether I chain-useTake from List
nodes or directly connect the output list intoAppend Texts
.A - With a space as a separator
Capture d’écran 2022-04-28 à 20.53.20.png
B - With a return as separator
Capture d’écran 2022-04-28 à 20.57.28.png
The reason for wanting to
Yes, the brute force method of repeated
Take From List
and joining inAppend Texts
does work! And possibly a process loop could work for that too making it unlimited in size.The reason for wanting to remove
return
chars from the text was simply thatSummerize List
outputs areturn
delimited string and I don't want thereturn
s in the string.It then struck me as limiting that Replace Text doesn't search for control chars like return, newline, tab and so on which are commonly required for parsing text rom machine and human sources to use in graphics.
A GREP node would be neat. I'll put that on my todo list!
So this works, thanks
So this works, thanks @mic for pointing this out here. It doesn't find "opt" + return which we use when manually entering text with returns though. not sure if that is even in ASCII codes, probably unicode.
Screen Shot 2022-04-29 at 1.11.55 pm.png