You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At this line you are using the pattern QuoteResponse*. You probably intended QuoteResponse.*. QuoteResponse* means QuoteRespons followed by e zero or more times. If EventFilter.info took a glob pattern it would have the intended meaning, but since it takes a regex the pattern should be QuoteResponse.*
Great examples, by the way. Thanks!
The text was updated successfully, but these errors were encountered:
At this line you are using the pattern
QuoteResponse*
. You probably intendedQuoteResponse.*
.QuoteResponse*
meansQuoteRespons
followed bye
zero or more times. IfEventFilter.info
took a glob pattern it would have the intended meaning, but since it takes a regex the pattern should beQuoteResponse.*
Great examples, by the way. Thanks!
The text was updated successfully, but these errors were encountered: