Java StringJoiner Usage join(final String left, final String right)

Here you can find the source of join(final String left, final String right)

Description

join

License

Apache License

Declaration

public static String join(final String left, final String right) 

Method Source Code

//package com.java2s;
/*//from   w  w  w  .j  av a2  s.co  m
 * Copyright 2016 Luk? Petrovick?
 *
 * 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.
 */

import java.util.StringJoiner;

public class Main {
    public static String join(final String left, final String right) {
        return new StringJoiner(".").add(left).add(right).toString();
    }
}

Related

  1. getTraceString(StackTraceElement[] stackTraceElements)
  2. implode(T[] array, String delim)
  3. implodeString(Iterable strings, String delimiter)
  4. incrementalComputationOfComponentWiseAverage(List average, int n, List newItems)
  5. join(Collection data, String delimiter)
  6. join(String separator, Collection c)
  7. joinRepeating(String element, String delimiter, int times)
  8. joinToString(String sep, Iterable items)
  9. listToString(List list)