Text Position Finder
Find all match positions by index, line and column
Finding where a substring appears in a large block of text — and jumping straight to it — isn't something most editors make easy. Paste your content, type what you're looking for (plain text or a regex), and every occurrence is highlighted inline with its exact index, line, and column. Click any result to scroll it to the center, or go the other way: type a position (offset or line:column) and jump straight to that fragment. Useful when parsing log files or debugging offset-based protocols.
How to use
- 1Paste text — An HTML page, log file, JSON response — any text content.
- 2Search by text or regex — Type a substring, or switch to Regex to match a pattern (ERROR|WARN, \d{3}). Every match is highlighted in the preview; hover a match to see its offset and line:column.
- 3Jump to a result — Click any row in the results list — that match scrolls to the center of the preview and gets a focus ring.
- 4Or go to a position — Type an offset (1234, 34-39) or line:column (42:13, 42:, 42:13-42:20) in "Go to position" to highlight and scroll straight to that fragment.
Examples
search: class="price"search: ERRORregex: ERROR|WARN|DEBUGgo to position: 2089search: ,"search: unexpected tokenWhen to use for web scraping
In scraping, substring position is needed for offset-based processing: some data formats specify positions in bytes or characters, not through tags. Also useful when debugging regex — when a pattern doesn't match, finding the exact character position in the text helps understand why. The reverse direction is what makes this fast for logs and parser errors: a JSON parser says "position 2089", a stack trace says "line 42, column 13". Type either into "Go to position" and jump straight to the fragment — the tool shows both coordinate systems at once, so an offset becomes a line:column and back. Standard text editors don't show exact indices well. This tool returns character offset, line, and column for each occurrence, highlights them inline, and lets you jump in both directions.