duereg / find-line-column

Given a string with line breaks, and a position in that string, returns the line and column of that position.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status devDependencies NPM version

find-line-column

npm module for finding the line/column position in a string

Install

npm install find-line-column

Use

var position = require('find-line-column')("This sentence is short.\nThis one is too.", 29);
// position -> [{ line: 2, col: 5 }]

License

MIT

About

Given a string with line breaks, and a position in that string, returns the line and column of that position.


Languages

Language:JavaScript 100.0%