Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
commons-lang-1.0.1.jar - Apache Commons Lang
commons-lang-1.0.1.jar is the JAR file for Apache Commons Lang 1.0.1, which
provides a host of helper utilities for the java.lang API.
JAR File Size and Download Location:
File name: commons-lang-1.0.1.jar File size: 63980 bytes Date modified: 11/22/2002 Download: Apache Commons Lang Website
✍: FYIcenter.com
⏎ org/apache/commons/lang/CharSetUtils.java
package org.apache.commons.lang; /* ==================================================================== * The Apache Software License, Version 1.1 * * Copyright (c) 2002 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, if * any, must include the following acknowlegement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowlegement may appear in the software itself, * if and wherever such third-party acknowlegements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived * from this software without prior written permission. For written * permission, please contact apache@apache.org. * * 5. Products derived from this software may not be called "Apache" * nor may "Apache" appear in their names without prior written * permission of the Apache Software Foundation. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. */ /** * Numerous routines to manipulate a character set. * * @author <a href="bayard@generationjava.com">Henri Yandell</a> * @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a> * @version $Id: CharSetUtils.java,v 1.6 2002/09/29 08:20:52 bayard Exp $ */ public class CharSetUtils { /** * CharSetUtils instances should NOT be constructed in standard programming. * Instead, the class should be used as <code>CharSetUtils.evaluateSet(null);</code>. * This constructor is public to permit tools that require a JavaBean instance * to operate. */ public CharSetUtils() { } /** * Creates a CharSetUtils object which allows a certain amount of * set logic to be performed upon the following syntax: * * "aeio" which implies 'a','e',.. * "^e" implies not e. However it only negates, it's not * a set in itself due to the size of that set in unicode. * "ej-m" implies e,j->m. e,j,k,l,m. * @param set * @return CharSet * @throws NullPointerException if any of set[i] is null or if set is null * @param set * @return CharSet */ public static CharSet evaluateSet(String[] set) { return new CharSet(set); } /** * Squeezes any repititions of a character that is mentioned in the * supplied set. An example is: * squeeze("hello", "el") => "helo" * See evaluateSet for set-syntax. * * @param str the string to work from * @param set the character set to use for manipulation */ public static String squeeze(String str, String set) { String[] strs = new String[1]; strs[0] = set; return squeeze(str, strs); } /** * Squeezes any repititions of a character that is mentioned in the * supplied set. An example is: * squeeze("hello", {"el"}) => "helo" * See evaluateSet for set-syntax. * * @param str the string to work from * @param set the character set to use for manipulation * @throws NullPointerException if str is null */ public static String squeeze(String str, String[] set) { CharSet chars = evaluateSet(set); StringBuffer buffer = new StringBuffer(str.length()); char[] chrs = str.toCharArray(); int sz = chrs.length; char lastChar = ' '; char ch = ' '; for (int i = 0; i < sz; i++) { ch = chrs[i]; if (chars.contains(ch)) { if ((ch == lastChar) && (i != 0)) { continue; } } buffer.append(ch); lastChar = ch; } return buffer.toString(); } /** * Takes an argument in set-syntax, see evaluateSet, * and returns the number of characters present in the specified string. * An example would be: count("hello", {"c-f","o"}) returns 2. * * @param str String target to count characters in * @param set String set of characters to count */ public static int count(String str, String set) { String[] strs = new String[1]; strs[0] = set; return count(str, strs); } /** * Takes an argument in set-syntax, see evaluateSet, * and returns the number of characters present in the specified string. * An example would be: count("hello", {"c-f","o"}) returns 2. * * @param str String target to count characters in * @param set String[] set of characters to count */ public static int count(String str, String[] set) { CharSet chars = evaluateSet(set); int count = 0; char[] chrs = str.toCharArray(); int sz = chrs.length; for(int i=0; i<sz; i++) { if(chars.contains(chrs[i])) { count++; } } return count; } /** * Takes an argument in set-syntax, see evaluateSet, * and deletes any of characters present in the specified string. * An example would be: delete("hello", {"c-f","o"}) returns "hll" * * @param str String target to delete characters from * @param set String set of characters to delete */ public static String delete(String str, String set) { String[] strs = new String[1]; strs[0] = set; return delete(str, strs); } /** * Takes an argument in set-syntax, see evaluateSet, * and deletes any of characters present in the specified string. * An example would be: delete("hello", {"c-f","o"}) returns "hll" * * @param str String target to delete characters from * @param set String[] set of characters to delete * @throws NullPointerException of str is null */ public static String delete(String str, String[] set) { CharSet chars = evaluateSet(set); StringBuffer buffer = new StringBuffer(str.length()); char[] chrs = str.toCharArray(); int sz = chrs.length; for(int i=0; i<sz; i++) { if(!chars.contains(chrs[i])) { buffer.append(chrs[i]); } } return buffer.toString(); } /** * Translate characters in a String. * An example is: translate("hello", "ho", "jy") => jelly * If the length of characters to search for is greater than the * length of characters to replace, then the last character is * used. * * @param target String to replace characters in * @param repl String to find that will be replaced * @param with String to put into the target String * @throws NullPointerException if target, with or repl is null */ public static String translate(String target, String repl, String with) { StringBuffer buffer = new StringBuffer(target.length()); char[] chrs = target.toCharArray(); char[] withChrs = with.toCharArray(); int sz = chrs.length; int withMax = with.length() - 1; for(int i=0; i<sz; i++) { int idx = repl.indexOf(chrs[i]); if(idx != -1) { if(idx > withMax) { idx = withMax; } buffer.append(withChrs[idx]); } else { buffer.append(chrs[i]); } } return buffer.toString(); } }
⏎ org/apache/commons/lang/CharSetUtils.java
⇒ Using commons-lang3.jar in Java Programs
⇐ commons-lang-2.6.jar - Apache Commons Lang
2017-04-15, ≈22🔥, 0💬
Popular Posts:
How to download and install JDK (Java Development Kit) 7? If you want to write Java applications, yo...
ZooKeeper is a centralized service for maintaining configuration information, naming, providing dist...
iText is an ideal library for developers looking to enhance web- and other applications with dynamic...
JDK 11 java.compiler.jmod is the JMOD file for JDK 11 Compiler module. JDK 11 Compiler module compil...
JDK 17 jdk.localedata.jmod is the JMOD file for JDK 17 Localedata module. JDK 17 Locale Data module ...