Here's what the output looks like:
Blah, Blah, Blah, Blah, Blah, Blah,
The end of the line can contain the last "Blah" in the following ways:
Blah
Blah,
Blah, <--one space
I want to capture and send to a list each "Blah" which are names that are always capitalized. I've tried triggering several combinations with ([A-Z][a-z]+) in it to match and capture the names. But then when I do world.Note "%1" to test and see if it gets them all, it doesn't seem to.
Currently I'm making do with a trigger that captures everything and a subroutine that split()'s it. I have had other instances where I would like to capture multiple items of the same type on a single line. So not only would I like to stop using a .* trigger and make it cleaner, but I've had other instances where I can't figure out how to do something like this.
I think this is also similar to colouring individual words in a line, which I would also like to be able to do.
Any ideas? Sorry if I'm missing something obvious here.
Blah, Blah, Blah, Blah, Blah, Blah,
The end of the line can contain the last "Blah" in the following ways:
Blah
Blah,
Blah, <--one space
I want to capture and send to a list each "Blah" which are names that are always capitalized. I've tried triggering several combinations with ([A-Z][a-z]+) in it to match and capture the names. But then when I do world.Note "%1" to test and see if it gets them all, it doesn't seem to.
Currently I'm making do with a trigger that captures everything and a subroutine that split()'s it. I have had other instances where I would like to capture multiple items of the same type on a single line. So not only would I like to stop using a .* trigger and make it cleaner, but I've had other instances where I can't figure out how to do something like this.
I think this is also similar to colouring individual words in a line, which I would also like to be able to do.
Any ideas? Sorry if I'm missing something obvious here.