Here you can find the source of indentationLevel(CharSequence c)
public static int indentationLevel(CharSequence c)
//package com.java2s; //License from project: Apache License public class Main { public static int indentationLevel(CharSequence c) { int i = 0; while (i < c.length() && c.charAt(i) == ' ') { i++;//from w w w . j av a 2s.c o m } return i; } }