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
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