Java String Tail tail(String s, String separator)

Here you can find the source of tail(String s, String separator)

Description

tail

License

Apache License

Declaration

public static String tail(String s, String separator) 

Method Source Code

//package com.java2s;
/*/*w  w w  .  j av  a 2  s .  c  om*/
 Copyright (C) 2012 The Stanford MobiSocial Laboratory
    
   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 s, String separator) {
        if (s == null)
            return null;
        int idx = s.lastIndexOf(separator);
        if (idx >= 0)
            return s.substring(idx + 1);
        else
            return s;
    }
}

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 src, String dividerRegex)
  5. tail(String text, String separator)
  6. tailOf(String s, char separator)
  7. tailOfString(String input, String sub)