Go: Java.util.regex.Pattern class use Example

Source: Internet
Author: User
Java code   import java.util.regex.pattern;      public class splitdemo {            private static final string regex =   ":";        private static final string input  =  "one:two:three:four:five";                public static void main (String[] args)  {             pattern p = pattern.compile (REGEX);  //compiles a given regular expression into a pattern             string[] items = p.split ( input);  //splits the given input sequence around the match for this pattern.             for (String s : items)  {                 SYSTEM.OUT.PRintln (s);            }                         System.out.println ("#############");                       pattern str=pattern.compile (":");             string[] strarray=str.split (INPUT,3 );            for (String s:strarray) {              system.out.println (s);             }                        system.out.println ("#############");                        string[] strarray2=str.split ( input,-3 );            for (String s:strArray2) {             system.out.println (s);            }        }   }      Run Results:   one   two   three   four   five& nbsp;  #############   one   two   three:four:five   #############    one   two   three   four   five  

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.