Ruby anchors
Input
{"pattern":"\\A(?<word>\\w+)","text":"hello\nworld","ignoreCase":false,"dotMatchesNewline":false,"extended":false}Output
hello
Try Ruby-style regular expressions against sample text and inspect matches, indexes, lengths, and capture groups.
Developer tools
Input
{"pattern":"\\A(?<word>\\w+)","text":"hello\nworld","ignoreCase":false,"dotMatchesNewline":false,"extended":false}Output
hello
Input
{"pattern":"(?<key>\\w+)=(?<value>\\d+)","text":"id=42 count=7","ignoreCase":false,"dotMatchesNewline":false,"extended":false}Output
id=42, count=7
Input
{"pattern":"start.*end","text":"start\nline\nend","ignoreCase":false,"dotMatchesNewline":true,"extended":false}Output
start\nline\nend
Nearby utilities from the KoguNavi toolbox.