Java String Tail tail(String src, String dividerRegex)

Here you can find the source of tail(String src, String dividerRegex)

Description

tail

License

Apache License

Declaration

public static String tail(String src, String dividerRegex) 

Method Source Code

//package com.java2s;
/*/*from ww w. j  ava  2s.  c o m*/
Copyright 2013 Stefano Fratini (mail@stefanofratini.it)
    
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    
   http://www.apache.org/licenses/LICENSE-2.0
    
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

public class Main {
    public static String tail(String src, String dividerRegex) {
        String[] splitList = src.split(dividerRegex);
        if (splitList.length == 0)
            return src;
        else
            return splitList[splitList.length - 1];
    }
}

Related

  1. tail(final String text, final char ch)
  2. tail(final String text, final char ch)
  3. tail(String s, char ch)
  4. tail(String s, String separator)
  5. tail(String text, String separator)
  6. tailOf(String s, char separator)
  7. tailOfString(String input, String sub)