- What's a railroad diagram?
- A visual representation of a regex pattern showing the flow. Character classes are rail nodes, alternations are branches, repetitions are loops. Easier to read than dense regex.
- Which regex flavor?
- PCRE/JS subset. Some PCRE-specific features (subroutine calls, atomic groups) aren't visualized; simpler patterns work fully.
- Does it help me write regex?
- Indirectly — seeing your pattern visually often reveals logical errors (why is this quantifier matching zero instances?). Useful for debugging.
- Can I copy the diagram?
- Text-based ASCII diagrams copy-pastable into any text editor. For HTML rendering, some regex tools have SVG-based diagrams — this tool is text-only.