Java String Manipulation Tool class

Source: Internet
Author: User

/*** Strkit.*/ Public classStrkit {/*** Lowercase with first letter*/     Public Staticstring Firstchartolowercase (String str) {CharFirstchar = Str.charat (0); if(Firstchar >= ' A ' && firstchar <= ' Z ') {            Char[] arr =Str.tochararray (); arr[0] + = (' A '-' a '); return NewString (arr); }        returnstr; }        /*** Capitalize the initial letter*/     Public Staticstring Firstchartouppercase (String str) {CharFirstchar = Str.charat (0); if(Firstchar >= ' a ' && firstchar <= ' z ') {            Char[] arr =Str.tochararray (); arr[0]-= (' A '-' a '); return NewString (arr); }        returnstr; }        /*** Returns True if the string is null or ""*/     Public Static BooleanIsBlank (String str) {returnstr = =NULL|| ". Equals (Str.trim ())?true:false; }        /*** Returns True if the string is not null and is not ""*/     Public Static BooleanNotblank (String str) {returnstr = =NULL|| ". Equals (Str.trim ())?false:true; }         Public Static BooleanNotblank (String ... strings) {if(Strings = =NULL)            return false;  for(String str:strings)if(str = =NULL|| "". Equals (Str.trim ()))return false; return true; }         Public Static BooleanNotnull (Object ... paras) {if(Paras = =NULL)            return false;  for(Object Obj:paras)if(obj = =NULL)                return false; return true; }}

Java String Manipulation Tool class

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.