Assume I have the following list of string objects:
ABC1, ABC2, ABC_Whatever
What's the most efficient way to extract the left most common characters from this list ? So I'd get ABC in my case.
StringUtils.getCommonPrefix(String... strs)
Apache Commons Lang から。
サードパーティのライブラリを使用する場合は、次のようにjOOλを使用してそのプレフィックスを生成します。
String prefix = Seq.of("ABC1", "ABC2", "ABC_Whatever").commonPrefix();
免責事項:私はjOOλの背後にある会社で働いています