Java String Ellipse ellipsisString(String string, int len)

Here you can find the source of ellipsisString(String string, int len)

Description

ellipsis String

License

Open Source License

Declaration

private static String ellipsisString(String string, int len) 

Method Source Code

//package com.java2s;
/*/*from   ww  w  .j  av  a  2s.  c  om*/
 * Copyright (C) 2012  Krawler Information Systems Pvt Ltd
 * All rights reserved.
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
*/

public class Main {
    private static String ellipsisString(String string, int len) {
        String name = string;
        if (name.length() > len && (!name.contains(" "))) {
            name = name.substring(0, (len - 3));
            name += "...";
        }
        return name;
    }
}

Related

  1. ellipsis(final String text, final int length)
  2. ellipsis(final String text, int length)
  3. ellipsis(String string, int length)
  4. ellipsis(String text, int max)
  5. ellipsis(String text, int maxLength)
  6. ellipsisString(String text, int ellipsisAt)
  7. ellipsisText(String text, int maxLength)
  8. ellipsize(String input, int maxLength)
  9. ellipsize(String s, int maxChars)