Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Regex Examples: more characters

Any line that has an 'abc' in it.

Regex: /abc/
Input: "abc xy"
Input: "abcde"
Input: "abxcxbdabce"
Input: "xabcde"
Input: "xa b c de"

Any line that starts with an 'abc'.

Regex: /^abc/
Input: "abcde"
Input: "abxcxbde"
Input: "xabcde"