We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0573f63 commit f846c26Copy full SHA for f846c26
doc/GUIDE.md
@@ -130,27 +130,6 @@ Use `\z` for end-of-string.
130
131
---
132
133
-### 3. Split Complex Rules Into Smaller Matchers
134
-
135
-Instead of building one all-inclusive pattern, break logic into separate matchers.
136
137
-**Instead of:**
138
139
-```regex
140
-^order-[A-Z]{2}-[0-9]+-(pending|done|failed)$
141
-```
142
143
-**Split into:**
144
145
146
-order-[A-Z]{2}-[0-9]+
147
-(pending|done|failed)
148
149
150
-Apply them sequentially in code if needed. This keeps FSMs smaller and easier to compile.
151
152
----
153
154
## Byte Search Optimization (Optional)
155
156
Patterns that start with an **uncommon character** can be accelerated using an initial byte scan before running the FSM.
0 commit comments