I have a list
1 2 3,page,1
[1] [2] [3,page,1]
[list split]
Is there any way that when [1] is bang I get a 1 but if [3,page,1] is bang I can split at each comma
and print 3 atoms like float 3 smybol page flot 1
split list
I have a list
1 2 3,page,1
[1] [2] [3,page,1]
[list split]
Is there any way that when [1] is bang I get a 1 but if [3,page,1] is bang I can split at each comma
and print 3 atoms like float 3 smybol page flot 1
@mrsstaceyseigle in Pd the comma is interpreted as a list separator, so "1 2 3,page,1" would be converted into three lists: "1 2 3", "page" and "1".
to check wether an element of a list is a bang you can use route:
Oops! Looks like something went wrong!