All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.codemodder.LineNumbers Maven / Gradle / Ivy

There is a newer version: 0.97.9
Show newest version
package io.codemodder;

/** Utilities related to line numbers. */
public final class LineNumbers {

  private LineNumbers() {}

  /** Get the line number you'd expect from an IDE at the given character offset. */
  public static int getLineNumberAt(final CharSequence str, final int index) {
    int linesSeen = 1;
    for (int i = 0; i < index; i++) {
      if (str.charAt(i) == '\n') {
        linesSeen++;
      }
    }
    return linesSeen;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy