Here you can find the source of lastIndexOfWhitespace(String s)
public static final int lastIndexOfWhitespace(String s)
//package com.java2s; //License from project: Open Source License public class Main { public static final int lastIndexOfWhitespace(String s) { for (int i = s.length() - 1; i >= 0; i--) if (s.charAt(i) <= ' ') return i; return -1; }// www. jav a 2s . c om }