简体   繁体   English

Java StringUtils.stripEnd 带句点、连字符或下划线

[英]Java StringUtils.stripEnd with period, hyphen or underscore

I'm trying to strip trailing characters off of a string using StringUtils.stripEnd , and noticed if I try to strip "_FOO" from "FOO_FOO" , this returns an empty string.我正在尝试使用StringUtils.stripEnd从字符串中删除尾随字符,并注意到如果我尝试从"FOO_FOO" "_FOO" "FOO_FOO" ,这将返回一个空字符串。 For example,例如,

import org.apache.commons.lang3.StringUtils;

public class StripTest {

    public static void printStripped(String s1, String suffix){
        String result = StringUtils.stripEnd(s1, suffix);
        System.out.println(String.format("Stripping '%s' from %s  -->   %s", suffix, s1, result));
    }

    public static void main(String[] args) {
        printStripped("FOO.BAR", ".BAR");
        printStripped("BAR.BAR", ".BAR");
        printStripped("FOO_BAR", "_BAR");
        printStripped("BAR_BAR", "_BAR");
        printStripped("FOO-BAR", "-BAR");
        printStripped("BAR-BAR", "-BAR");
    }

}

Which outputs哪些输出

Stripping '.BAR' from FOO.BAR  -->   FOO
Stripping '.BAR' from BAR.BAR  -->   
Stripping '_BAR' from FOO_BAR  -->   FOO
Stripping '_BAR' from BAR_BAR  -->   
Stripping '-BAR' from FOO-BAR  -->   FOO
Stripping '-BAR' from BAR-BAR  -->   

Can someone explain this behavior?有人可以解释这种行为吗? Didn't see any examples from docs of this case.没有这个案例的文档中看到任何例子 Using Java 7.使用 Java 7。

Look at the documentation and examples present in the StringUtils Javadoc:查看 StringUtils Javadoc 中的文档和示例:

Strips any of a set of characters from the end of a String.

A null input String returns null. An empty string ("") input returns the empty string.

If the stripChars String is null, whitespace is stripped as defined by Character.isWhitespace(char).

 StringUtils.stripEnd(null, *)          = null
 StringUtils.stripEnd("", *)            = ""
 StringUtils.stripEnd("abc", "")        = "abc"
 StringUtils.stripEnd("abc", null)      = "abc"
 StringUtils.stripEnd("  abc", null)    = "  abc"
 StringUtils.stripEnd("abc  ", null)    = "abc"
 StringUtils.stripEnd(" abc ", null)    = " abc"
 StringUtils.stripEnd("  abcyx", "xyz") = "  abc"
 StringUtils.stripEnd("120.00", ".0")   = "12"

This is not what you want, as it will strip the SET of characters anywhere from the end.这不是您想要的,因为它会从末尾的任何位置去除字符集。 I believe you are looking for removeEnd(...)我相信你正在寻找removeEnd(...)

Removes a substring only if it is at the end of a source string, otherwise returns the source string.

A null source string will return null. An empty ("") source string will return the empty string. A null search string will return the source string.

 StringUtils.removeEnd(null, *)      = null
 StringUtils.removeEnd("", *)        = ""
 StringUtils.removeEnd(*, null)      = *
 StringUtils.removeEnd("www.domain.com", ".com.")  = "www.domain.com"
 StringUtils.removeEnd("www.domain.com", ".com")   = "www.domain"
 StringUtils.removeEnd("www.domain.com", "domain") = "www.domain.com"
 StringUtils.removeEnd("abc", "")    = "abc"

removeEnd(...) operates not a set of characters, but instead a substring, which is what you are trying to extract. removeEnd(...)操作的不是一组字符,而是一个子字符串,这就是您要提取的内容。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM