a little help with regexp ?
Hi,
Can someone please tell me why clicking on these 2 messages doesn't output the same result ?
Thanks !
Max Patch
Copy patch and select New From Clipboard in Max.
"message" reference
comma [symbol]
A comma (,) divides a message into separate messages which will be sent out in order. (Example: 3, 4, 5 sends out 3, then 4, then 5.)
Thanks I know that, and i do want the message to be output as several messages.
The only way I found is :
Max Patch
Copy patch and select New From Clipboard in Max.
1 no need for fromsymbol
2 single regexp to filter [], out
regexp \\]|\\[|\\, @substitute \\

I'll study that, thanks !