码迷,mamicode.com
首页 > 编程语言 > 详细

String 经常用法最优算法实现总结 (一)

时间:2017-06-03 17:39:06      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:pre   str   nbsp   inpu   parameter   span   cas   from   data   

<pre name="code" class="java"><span style="font-family: Arial, Helvetica, sans-serif;"></pre><p>1. reverse</p><p><pre name="code" class="java">   /**</span>

     * @Description: reverse a string.
     * @param str the String to reverse, may be null
     * @return reversedStr the reversed String, null if null String input
     */
    public static String reverse(String str) {
        if (isEmpty(str)) {
            return str;
        }

        return new StringBuilder(str).reverse().toString();
    }

2 . remove

    /**
     * @Description: Removes all occurrences of a substring from within the source string.
     * @param str the source String to search
     * @param remove the String to search for and remove
     * @return the substring with the string removed if found, null if null String input
     */
    public static String remove(String str, String remove) {
        if (isEmpty(str) || isEmpty(remove)) {
            return str;
        }

        return str.replace(remove, "");
    }


3. startsWithIgnoreCase

    /**
     * 
     * @Title: startsWithIgnoreCase
     * @Description: check if a string starts with a specified prefix.
     * @param str input value
     * @param prefix prefix value
     * @return true if the string starts with the prefix, case insensitive, or both null, blank
     */
    public static boolean startsWithIgnoreCase(String str, String prefix) {
        if (str == null || prefix == null) {
            return (str == null && prefix == null);
        }

        if (prefix.length() > str.length()) {
            return false;
        }

        return str.toUpperCase().startsWith(prefix.toUpperCase());
    }

4. isAllAlphas

   /**
     * whether value does not contain number(s).
     * 
     * @Title: isAllAlphas
     * @param value the source to be handled
     * @return boolean
     */
    public static boolean isAllAlphas(String value) {
        // if input parameter is null, just return
        if (value == null) {
            return false;
        }

        for (int i = 0; i < value.length(); i++) {
            if (!(Character.isLetter(value.charAt(i)))) {
                return false;
            }
        }

        return true;
    }

5.  isNumeric

  /**
     * check if the CharSequence contains only unicode digits.
     * 
     * @Title: isNumber
     * @param str input str
     * @return true or false
     */
    public static boolean isNumeric(String str) {
        // if input parameter is null, just return false
        if (isEmpty(str)) {
            return false;
        }

        for (int i = 0; i < str.length(); i++) {
            // if there is a alpha, return false
            if (!Character.isDigit(str.charAt(i))) {
                return false;
            }
        }
        
        return true;
    }



String 经常用法最优算法实现总结 (一)

标签:pre   str   nbsp   inpu   parameter   span   cas   from   data   

原文地址:http://www.cnblogs.com/cynchanpin/p/6937509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!