(String str, String[] prefixes, String[] suffixes)
| 719 | } |
| 720 | |
| 721 | public static String removePrefixSuffix(String str, String[] prefixes, String[] suffixes) |
| 722 | { |
| 723 | str = removePrefix(str, prefixes); |
| 724 | str = removeSuffix(str, suffixes); |
| 725 | return str; |
| 726 | } |
| 727 | |
| 728 | public static String removePrefixSuffix(String str, String prefix, String suffix) |
| 729 | { |
no test coverage detected