Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for trimLeft (0.2 sec)

  1. src/main/webapp/js/admin/plugins/form-validator/sanitize.js

    ");var c='[type="button"], [type="submit"], [type="radio"], [type="checkbox"], [type="reset"], [type="search"]',d={upper:function(a){return a.toLocaleUpperCase()},lower:function(a){return a.toLocaleLowerCase()},trim:function(b){return a.trim(b)},trimLeft:function(a){return a.replace(/^\s+/,"")},trimRight:function(a){return a.replace(/\s+$/,"")},capitalize:function(b){var c=b.split(" ");return a.each(c,function(a,b){c[a]=b.substr(0,1).toUpperCase()+b.substr(1,b.length)}),c.join(" ")},insert:function(a,b,c){var...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 2.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/StringUtil.java

         * @param trimText
         *            削る文字列
         * @return 結果の文字列
         */
        public static final String rtrim(final String text, String trimText) {
            if (text == null) {
                return null;
            }
            if (trimText == null) {
                trimText = " ";
            }
            int pos = text.length() - 1;
            for (; pos >= 0; pos--) {
                if (trimText.indexOf(text.charAt(pos)) < 0) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.7K bytes
    - Viewed (0)
Back to top