String.Join Metoda

Definicja

Łączy elementy określonej tablicy lub elementów członkowskich kolekcji przy użyciu określonego separatora między każdym elementem lub elementem członkowskim.

Przeciążenia

Join(Char, Object[])

Łączy reprezentacje ciągów tablicy obiektów przy użyciu określonego separatora między każdym elementem członkowskim.

Join(Char, String[])

Łączy tablicę ciągów przy użyciu określonego separatora między poszczególnymi elementami członkowskim.

Join(String, IEnumerable<String>)

Łączy elementy członkowskie skonstruowanej IEnumerable<T> kolekcji typu String, używając określonego separatora między poszczególnymi elementami członkowskim.

Join(String, Object[])

Łączy elementy tablicy obiektów przy użyciu określonego separatora między poszczególnymi elementami.

Join(String, String[])

Łączy wszystkie elementy tablicy ciągów przy użyciu określonego separatora między poszczególnymi elementami.

Join(Char, String[], Int32, Int32)

Łączy tablicę ciągów przy użyciu określonego separatora między poszczególnymi elementami, zaczynając od elementu znajdującego się w valuestartIndex pozycji i łącząc do count elementów.

Join(String, String[], Int32, Int32)

Łączy określone elementy tablicy ciągów przy użyciu określonego separatora między poszczególnymi elementami.

Join<T>(Char, IEnumerable<T>)

Łączy elementy członkowskie kolekcji przy użyciu określonego separatora między poszczególnymi elementami członkowskimi.

Join<T>(String, IEnumerable<T>)

Łączy elementy członkowskie kolekcji przy użyciu określonego separatora między poszczególnymi elementami członkowskimi.

Join(Char, Object[])

Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs

Łączy reprezentacje ciągów tablicy obiektów przy użyciu określonego separatora między każdym elementem członkowskim.

public:
 static System::String ^ Join(char separator, ... cli::array <System::Object ^> ^ values);
public static string Join (char separator, params object?[] values);
public static string Join (char separator, params object[] values);
static member Join : char * obj[] -> string
Public Shared Function Join (separator As Char, ParamArray values As Object()) As String

Parametry

separator
Char

Znak, który ma być używany jako separator. separator element jest uwzględniony w zwracanym ciągu tylko wtedy, gdy value ma więcej niż jeden element.

values
Object[]

Tablica obiektów, których reprezentacje ciągów zostaną łączone.

Zwraca

Ciąg składający się z elementów values rozdzielonych znakiem separator .

-lub-

Empty jeśli values ma zero elementów.

Wyjątki

value to null.

Długość wynikowego ciągu przepełnia maksymalną dozwoloną długość (Int32.MaxValue).

Dotyczy

Join(Char, String[])

Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs

Łączy tablicę ciągów przy użyciu określonego separatora między poszczególnymi elementami członkowskim.

public:
 static System::String ^ Join(char separator, ... cli::array <System::String ^> ^ value);
public static string Join (char separator, params string?[] value);
public static string Join (char separator, params string[] value);
static member Join : char * string[] -> string
Public Shared Function Join (separator As Char, ParamArray value As String()) As String

Parametry

separator
Char

Znak, który ma być używany jako separator. separator element jest uwzględniony w zwracanym ciągu tylko wtedy, gdy value ma więcej niż jeden element.

value
String[]

Tablica ciągów do łączenia.

Zwraca

Ciąg składający się z elementów value rozdzielonych znakiem separator .

-lub-

Empty jeśli value ma zero elementów.

Wyjątki

value to null.

Długość wynikowego ciągu przepełnia maksymalną dozwoloną długość (Int32.MaxValue).

Dotyczy

Join(String, IEnumerable<String>)

Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs

Łączy elementy członkowskie skonstruowanej IEnumerable<T> kolekcji typu String, używając określonego separatora między poszczególnymi elementami członkowskim.

public:
 static System::String ^ Join(System::String ^ separator, System::Collections::Generic::IEnumerable<System::String ^> ^ values);
public static string Join (string separator, System.Collections.Generic.IEnumerable<string> values);
public static string Join (string? separator, System.Collections.Generic.IEnumerable<string?> values);
[System.Runtime.InteropServices.ComVisible(false)]
public static string Join (string separator, System.Collections.Generic.IEnumerable<string> values);
static member Join : string * seq<string> -> string
[<System.Runtime.InteropServices.ComVisible(false)>]
static member Join : string * seq<string> -> string
Public Shared Function Join (separator As String, values As IEnumerable(Of String)) As String

Parametry

separator
String

Ciąg używany jako separator.separator element jest uwzględniony w zwracanym ciągu tylko wtedy, gdy values ma więcej niż jeden element.

values
IEnumerable<String>

Kolekcja zawierająca ciągi do łączenia.

Zwraca

Ciąg składający się z elementów values rozdzielonych ciągiem separator .

-lub-

Empty jeśli values ma zero elementów.

Atrybuty

Wyjątki

values to null.

Długość wynikowego ciągu przepełnia maksymalną dozwoloną długość (Int32.MaxValue).

Przykłady

W poniższym przykładzie użyto algorytmu nazwanego sitem Eratostenesa do obliczania liczb pierwszych, których wartość jest równa 100 lub mniejsza. Przypisuje wynik do List<T> obiektu typu String, który następnie przekazuje do Join(String, IEnumerable<String>) metody .

using System;
using System.Collections.Generic;

public class Example
{
   public static void Main()
   {
      int maxPrime = 100;
      List<int> primes = GetPrimes(maxPrime);
      Console.WriteLine("Primes less than {0}:", maxPrime);
      Console.WriteLine("   {0}", String.Join(" ", primes));
   }

   private static List<int> GetPrimes(int maxPrime)
   {
      Array values = Array.CreateInstance(typeof(int), 
                              new int[] { maxPrime - 1}, new int[] { 2 });
      // Use Sieve of Eratosthenes to determine prime numbers.
      for (int ctr = values.GetLowerBound(0); ctr <= (int) Math.Ceiling(Math.Sqrt(values.GetUpperBound(0))); ctr++)
      {
                           
         if ((int) values.GetValue(ctr) == 1) continue;
         
         for (int multiplier = ctr; multiplier <=  maxPrime / 2; multiplier++)
            if (ctr * multiplier <= maxPrime)
               values.SetValue(1, ctr * multiplier);
      }      
      
      List<int> primes = new List<int>();
      for (int ctr = values.GetLowerBound(0); ctr <= values.GetUpperBound(0); ctr++)
         if ((int) values.GetValue(ctr) == 0) 
            primes.Add(ctr);
      return primes;
   }   
}
// The example displays the following output:
//    Primes less than 100:
//       2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
open System

let getPrimes maxPrime =
    let values = Array.CreateInstance(typeof<int>, [| maxPrime - 1 |], [| 2 |])
    // Use Sieve of Eratosthenes to determine prime numbers.
    for i = values.GetLowerBound 0 to values.GetUpperBound 0 |> float |> sqrt |> ceil |> int do
        if values.GetValue i :?> int <> 1 then
            for multiplier = i to maxPrime / 2 do
                if i * multiplier <= maxPrime then
                    values.SetValue(1, i * multiplier)

    let primes = ResizeArray()
    for i = values.GetLowerBound 0 to values.GetUpperBound 0 do
        if values.GetValue i :?> int = 0 then
            primes.Add i
    primes

let maxPrime = 100
let primes = getPrimes maxPrime
printfn $"Primes less than {maxPrime}:"
printfn $"""   {String.Join(" ", primes)}"""

// The example displays the following output:
//    Primes less than 100:
//       2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
Imports System.Collections.Generic

Module Example
   Public Sub Main()
      Dim maxPrime As Integer = 100
      Dim primes As List(Of String) = GetPrimes(maxPrime)
      Console.WriteLine("Primes less than {0}:", maxPrime)
      Console.WriteLine("   {0}", String.Join(" ", primes))
   End Sub
   
   Private Function GetPrimes(maxPrime As Integer) As List(Of String)
      Dim values As Array = Array.CreateInstance(GetType(Integer), _
                              New Integer() { maxPrime - 1}, New Integer(){ 2 }) 
        ' Use Sieve of Eratosthenes to determine prime numbers.
      For ctr As Integer = values.GetLowerBound(0) To _
                           CInt(Math.Ceiling(Math.Sqrt(values.GetUpperBound(0))))
         If CInt(values.GetValue(ctr)) = 1 Then Continue For
         
         For multiplier As Integer = ctr To maxPrime \ 2
            If ctr * multiplier <= maxPrime Then values.SetValue(1, ctr * multiplier)
         Next   
      Next      
      
      Dim primes As New List(Of String)
      For ctr As Integer = values.GetLowerBound(0) To values.GetUpperBound(0)
         If CInt(values.GetValue(ctr)) = 0 Then primes.Add(ctr.ToString())
      Next            
      Return primes
   End Function   
End Module
' The example displays the following output:
'    Primes less than 100:
'       2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97

Uwagi

Jeśli separator parametr ma nullwartość , zamiast tego jest używany pusty ciąg (String.Empty). Jeśli którykolwiek element członkowski elementu values to null, zamiast tego jest używany pusty ciąg.

Join(String, IEnumerable<String>) jest wygodną metodą, która umożliwia łączenie każdego elementu w IEnumerable(Of String) kolekcji bez uprzedniego konwertowania elementów na tablicę ciągów. Jest to szczególnie przydatne w przypadku wyrażeń zapytań Language-Integrated Query (LINQ). Poniższy przykład przekazuje List(Of String) obiekt zawierający wielkie lub małe litery alfabetu do wyrażenia lambda, które wybiera litery, które są równe lub większe niż określona litera (w tym przykładzie jest "M"). Kolekcja IEnumerable(Of String) zwrócona przez Enumerable.Where metodę jest przekazywana do Join(String, IEnumerable<String>) metody w celu wyświetlenia wyniku jako pojedynczego ciągu.

using System;
using System.Collections.Generic;
using System.Linq;

public class Example
{
   public static void Main()
   {
      string output = String.Join(" ", GetAlphabet(true).Where( letter => 
                      letter.CompareTo("M") >= 0));
      Console.WriteLine(output);  
   }

   private static List<string> GetAlphabet(bool upper)
   {
      List<string> alphabet = new List<string>();
      int charValue = upper ? 65 : 97;
      for (int ctr = 0; ctr <= 25; ctr++)
         alphabet.Add(((char)(charValue + ctr)).ToString());
      return alphabet; 
   }
}
// The example displays the following output:
//      M N O P Q R S T U V W X Y Z
// This F# example uses Seq.filter instead of Linq.
open System

let getAlphabet upper =
    let charValue = if upper then 65 else 97
    seq {
        for i = 0 to 25 do
            charValue + i
            |> char
            |> string
    }

String.Join(" ", getAlphabet true |> Seq.filter (fun letter -> letter.CompareTo "M" >= 0))
|> printfn "%s"

// The example displays the following output:
//      M N O P Q R S T U V W X Y Z
Imports System.Collections.Generic
Imports System.Linq

Module modMain
   Public Sub Main()
      Dim output As String = String.Join(" ", GetAlphabet(True).Where(Function(letter) _
                                                         letter >= "M"))
        
      Console.WriteLine(output)                                     
   End Sub
   
   Private Function GetAlphabet(upper As Boolean) As List(Of String)
      Dim alphabet As New List(Of String)
      Dim charValue As Integer = CInt(IIf(upper, 65, 97))
      For ctr As Integer = 0 To 25
         alphabet.Add(ChrW(charValue + ctr).ToString())
      Next
      Return alphabet 
   End Function
End Module
' The example displays the following output:
'      M N O P Q R S T U V W X Y Z

Zobacz też

Dotyczy

Join(String, Object[])

Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs

Łączy elementy tablicy obiektów przy użyciu określonego separatora między poszczególnymi elementami.

public:
 static System::String ^ Join(System::String ^ separator, ... cli::array <System::Object ^> ^ values);
public static string Join (string separator, params object[] values);
public static string Join (string? separator, params object?[] values);
[System.Runtime.InteropServices.ComVisible(false)]
public static string Join (string separator, params object[] values);
static member Join : string * obj[] -> string
[<System.Runtime.InteropServices.ComVisible(false)>]
static member Join : string * obj[] -> string
Public Shared Function Join (separator As String, ParamArray values As Object()) As String

Parametry

separator
String

Ciąg używany jako separator. separator element jest uwzględniony w zwracanym ciągu tylko wtedy, gdy values ma więcej niż jeden element.

values
Object[]

Tablica zawierająca elementy do łączenia.

Zwraca

Ciąg składający się z elementów values rozdzielonych ciągiem separator .

-lub-

Empty jeśli values ma zero elementów.

-lub-

tylko .NET Framework: Empty jeśli pierwszym elementem elementu values jest null.

Atrybuty

Wyjątki

values to null.

Długość wynikowego ciągu przepełnia maksymalną dozwoloną długość (Int32.MaxValue).

Przykłady

W poniższym przykładzie użyto algorytmu nazwanego sitem Eratostenesa do obliczania liczb pierwszych, których wartość jest równa 100 lub mniejsza. Przypisuje wynik do tablicy całkowitej, którą następnie przekazuje do Join(String, Object[]) metody .

using System;
using System.Collections.Generic;

public class Example
{
   public static void Main()
   {
      int maxPrime = 100;
      int[] primes = GetPrimes(maxPrime);
      Console.WriteLine("Primes less than {0}:", maxPrime);
      Console.WriteLine("   {0}", String.Join(" ", primes));
   }

   private static int[] GetPrimes(int maxPrime)
   {
      Array values = Array.CreateInstance(typeof(int), 
                              new int[] { maxPrime - 1}, new int[] { 2 }); 
      // Use Sieve of Eratosthenes to determine prime numbers.
      for (int ctr = values.GetLowerBound(0); ctr <= (int) Math.Ceiling(Math.Sqrt(values.GetUpperBound(0))); ctr++)
      {
                           
         if ((int) values.GetValue(ctr) == 1) continue;
         
         for (int multiplier = ctr; multiplier <=  maxPrime / 2; multiplier++)
            if (ctr * multiplier <= maxPrime)
               values.SetValue(1, ctr * multiplier);
      }      
      
      List<int> primes = new List<int>();
      for (int ctr = values.GetLowerBound(0); ctr <= values.GetUpperBound(0); ctr++)
         if ((int) values.GetValue(ctr) == 0) 
            primes.Add(ctr);
      return primes.ToArray();
   }   
}
// The example displays the following output:
//    Primes less than 100:
//       2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
open System

let getPrimes maxPrime =
    let values = Array.CreateInstance(typeof<int>, [| maxPrime - 1 |], [| 2 |])
    // Use Sieve of Eratosthenes to determine prime numbers.
    for i = values.GetLowerBound 0 to values.GetUpperBound 0 |> float |> sqrt |> ceil |> int do
        if values.GetValue i :?> int <> 1 then
            for multiplier = i to maxPrime / 2 do
                if i * multiplier <= maxPrime then
                    values.SetValue(1, i * multiplier)

    [| for i = values.GetLowerBound 0 to values.GetUpperBound 0 do
        if values.GetValue i :?> int = 0 then
            i |]

let maxPrime = 100
let primes = getPrimes maxPrime
printfn $"Primes less than {maxPrime}:"
printfn $"""   {String.Join(" ", primes)}"""

// The example displays the following output:
//    Primes less than 100:
//       2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
Module Example
   Public Sub Main()
      Dim maxPrime As Integer = 100
      Dim primes() As Integer = GetPrimes(maxPrime)
      Console.WriteLine("Primes less than {0}:", maxPrime)
      Console.WriteLine("   {0}", String.Join(" ", primes))
   End Sub
   
   Private Function GetPrimes(maxPrime As Integer) As Integer()
      Dim values As Array = Array.CreateInstance(GetType(Integer), _
                              New Integer() { maxPrime - 1}, New Integer(){ 2 }) 
        ' Use Sieve of Eratosthenes to determine prime numbers.
      For ctr As Integer = values.GetLowerBound(0) To _
                           CInt(Math.Ceiling(Math.Sqrt(values.GetUpperBound(0))))
         If CInt(values.GetValue(ctr)) = 1 Then Continue For
         
         For multiplier As Integer = ctr To maxPrime \ 2
            If ctr * multiplier <= maxPrime Then values.SetValue(1, ctr * multiplier)
         Next   
      Next      
      
      Dim primes As New System.Collections.Generic.List(Of Integer)
      For ctr As Integer = values.GetLowerBound(0) To values.GetUpperBound(0)
         If CInt(values.GetValue(ctr)) = 0 Then primes.Add(ctr)
      Next            
      Return primes.ToArray()
   End Function   
End Module
' The example displays the following output:
'    Primes less than 100:
'       2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97

Uwagi

Jeśli element jest null lub jeśli którykolwiek element values inny niż pierwszy element to null, zamiast tego jest używany pusty ciąg (String.Empty).separator Zobacz sekcję Uwagi dla osób wywołujących, jeśli pierwszym elementem elementu values jest null.

Join(String, Object[]) jest wygodną metodą, która umożliwia łączenie każdego elementu w tablicy obiektów bez jawnego konwertowania jego elementów na ciągi. Reprezentacja ciągu każdego obiektu w tablicy jest pochodna przez wywołanie metody tego obiektu ToString .

Uwagi dotyczące wywoływania

.NET Framework tylko: jeśli pierwszym elementem values funkcji jest null, Join(String, Object[]) metoda nie łączy elementów w values , ale zamiast tego zwraca wartość Empty. Dostępnych jest wiele obejść tego problemu. Najłatwiej jest przypisać wartość Empty do pierwszego elementu tablicy, jak pokazano w poniższym przykładzie.

object[] values = { null, "Cobb", 4189, 11434, .366 };
if (values[0] == null) values[0] = String.Empty;
Console.WriteLine(String.Join("|", values));

// The example displays the following output:
//      |Cobb|4189|11434|0.366
let values: obj[] = [| null; "Cobb"; 4189; 11434; 0.366 |]
if values[0] = null then 
   values[0] <- String.Empty
printfn $"""{String.Join("|", values)}"""

// The example displays the following output:
//      |Cobb|4189|11434|0.366
Dim values() As Object = { Nothing, "Cobb", 4189, 11434, .366 }
If values(0) Is Nothing Then values(0) = String.Empty
Console.WriteLine(String.Join("|", values))
' The example displays the following output:
'      |Cobb|4189|11434|0.366

Zobacz też

Dotyczy

Join(String, String[])

Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs

Łączy wszystkie elementy tablicy ciągów przy użyciu określonego separatora między poszczególnymi elementami.

public:
 static System::String ^ Join(System::String ^ separator, ... cli::array <System::String ^> ^ value);
public:
 static System::String ^ Join(System::String ^ separator, cli::array <System::String ^> ^ value);
public static string Join (string separator, params string[] value);
public static string Join (string? separator, params string?[] value);
public static string Join (string separator, string[] value);
static member Join : string * string[] -> string
Public Shared Function Join (separator As String, ParamArray value As String()) As String
Public Shared Function Join (separator As String, value As String()) As String

Parametry

separator
String

Ciąg używany jako separator. separator element jest uwzględniony w zwracanym ciągu tylko wtedy, gdy value ma więcej niż jeden element.

value
String[]

Tablica zawierająca elementy do łączenia.

Zwraca

Ciąg składający się z elementów rozdzielonych value ciągiem separator .

-lub-

Empty jeśli values ma zero elementów.

Wyjątki

value to null.

Długość wynikowego ciągu przepełnia maksymalną dozwoloną długość (Int32.MaxValue).

Przykłady

W poniższym przykładzie pokazano metodę Join .

using namespace System;
String^ MakeLine( int initVal, int multVal, String^ sep )
{
   array<String^>^sArr = gcnew array<String^>(10);
   for ( int i = initVal; i < initVal + 10; i++ )
      sArr[ i - initVal ] = String::Format( "{0, -3}", i * multVal );
   return String::Join( sep, sArr );
}

int main()
{
   Console::WriteLine( MakeLine( 0, 5, ", " ) );
   Console::WriteLine( MakeLine( 1, 6, "  " ) );
   Console::WriteLine( MakeLine( 9, 9, ": " ) );
   Console::WriteLine( MakeLine( 4, 7, "< " ) );
}
// The example displays the following output:
//       0  , 5  , 10 , 15 , 20 , 25 , 30 , 35 , 40 , 45
//       6    12   18   24   30   36   42   48   54   60
//       81 : 90 : 99 : 108: 117: 126: 135: 144: 153: 162
//       28 < 35 < 42 < 49 < 56 < 63 < 70 < 77 < 84 < 91
using System;

public class JoinTest
{
    public static void Main()
    {
        Console.WriteLine(MakeLine(0, 5, ", "));
        Console.WriteLine(MakeLine(1, 6, "  "));
        Console.WriteLine(MakeLine(9, 9, ": "));
        Console.WriteLine(MakeLine(4, 7, "< "));
    }

    private static string MakeLine(int initVal, int multVal, string sep)
    {
        string [] sArr = new string [10];

        for (int i = initVal; i < initVal + 10; i++)
            sArr[i - initVal] = String.Format("{0,-3}", i * multVal);

        return String.Join(sep, sArr);
    }
}
// The example displays the following output:
//       0  , 5  , 10 , 15 , 20 , 25 , 30 , 35 , 40 , 45
//       6    12   18   24   30   36   42   48   54   60
//       81 : 90 : 99 : 108: 117: 126: 135: 144: 153: 162
//       28 < 35 < 42 < 49 < 56 < 63 < 70 < 77 < 84 < 91
open System

let makeLine initVal multVal (sep: string) =
    let sArr = Array.zeroCreate<string> 10 

    for i = initVal to initVal + 9 do
        sArr[i - initVal] <- String.Format("{0,-3}", i * multVal)

    String.Join(sep, sArr)

printfn $"""{makeLine 0 5 ", "}"""
printfn $"""{makeLine 1 6 "  "}"""
printfn $"""{makeLine 9 9 ": "}"""
printfn $"""{makeLine 4 7 "< "}"""

// The example displays the following output:
//       0  , 5  , 10 , 15 , 20 , 25 , 30 , 35 , 40 , 45
//       6    12   18   24   30   36   42   48   54   60
//       81 : 90 : 99 : 108: 117: 126: 135: 144: 153: 162
//       28 < 35 < 42 < 49 < 56 < 63 < 70 < 77 < 84 < 91
Public Class JoinTest
    
    Public Shared Sub Main()
        
        Console.WriteLine(MakeLine(0, 5, ", "))
        Console.WriteLine(MakeLine(1, 6, "  "))
        Console.WriteLine(MakeLine(9, 9, ": "))
        Console.WriteLine(MakeLine(4, 7, "< "))
    End Sub
    
    
    Private Shared Function MakeLine(initVal As Integer, multVal As Integer, sep As String) As String
        Dim sArr(10) As String
        Dim i As Integer
        
        
        For i = initVal To (initVal + 10) - 1
            sArr((i - initVal)) = [String].Format("{0,-3}", i * multVal)
        
        Next i
        Return [String].Join(sep, sArr)
    End Function 'MakeLine
End Class
' The example displays the following output:
'       0  , 5  , 10 , 15 , 20 , 25 , 30 , 35 , 40 , 45
'       6    12   18   24   30   36   42   48   54   60
'       81 : 90 : 99 : 108: 117: 126: 135: 144: 153: 162
'       28 < 35 < 42 < 49 < 56 < 63 < 70 < 77 < 84 < 91

Uwagi

Na przykład jeśli separator element ma wartość ", " i elementy to value "apple", "orange", "grape" i "pear", Join(separator, value) zwraca wartość "apple, orange, grape, pear".

Jeśli separator parametr ma nullwartość , zamiast tego jest używany pusty ciąg (String.Empty). Jeśli którykolwiek element w pliku value to null, zamiast tego jest używany pusty ciąg.

Zobacz też

Dotyczy

Join(Char, String[], Int32, Int32)

Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs

Łączy tablicę ciągów przy użyciu określonego separatora między poszczególnymi elementami, zaczynając od elementu znajdującego startIndex się w value pozycji i łącząc do count elementów.

public:
 static System::String ^ Join(char separator, cli::array <System::String ^> ^ value, int startIndex, int count);
public static string Join (char separator, string?[] value, int startIndex, int count);
public static string Join (char separator, string[] value, int startIndex, int count);
static member Join : char * string[] * int * int -> string
Public Shared Function Join (separator As Char, value As String(), startIndex As Integer, count As Integer) As String

Parametry

separator
Char

Łączy tablicę ciągów przy użyciu określonego separatora między poszczególnymi elementami, zaczynając od elementu znajdującego się w określonym indeksie i uwzględniającego określoną liczbę elementów.

value
String[]

Tablica ciągów do łączenia.

startIndex
Int32

Pierwszy element w value pliku , aby połączyć.

count
Int32

Liczba elementów z value do łączenia, począwszy od elementu w startIndex pozycji.

Zwraca

Ciąg składający się z count elementów rozpoczynających value się od startIndex znaku rozdzielanego znakiem separator .

-lub-

Empty jeśli count ma wartość zero.

Wyjątki

value to null.

startIndex lub count są ujemne.

-lub-

startIndexjest większa niż długość .value - count

Długość wynikowego ciągu przepełnia maksymalną dozwoloną długość (Int32.MaxValue).

Dotyczy

Join(String, String[], Int32, Int32)

Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs

Łączy określone elementy tablicy ciągów przy użyciu określonego separatora między poszczególnymi elementami.

public:
 static System::String ^ Join(System::String ^ separator, cli::array <System::String ^> ^ value, int startIndex, int count);
public static string Join (string separator, string[] value, int startIndex, int count);
public static string Join (string? separator, string?[] value, int startIndex, int count);
static member Join : string * string[] * int * int -> string
Public Shared Function Join (separator As String, value As String(), startIndex As Integer, count As Integer) As String

Parametry

separator
String

Ciąg używany jako separator. separator jest uwzględniany w zwracanym ciągu tylko wtedy, gdy value ma więcej niż jeden element.

value
String[]

Tablica zawierająca elementy do łączenia.

startIndex
Int32

Pierwszy element do value użycia.

count
Int32

Liczba elementów value do użycia.

Zwraca

Ciąg składający się z count elementów rozpoczynających value się startIndex od rozdzielanego znakiem separator .

-lub-

Empty jeśli count ma wartość zero.

Wyjątki

value to null.

startIndex lub count jest mniejszy niż 0.

-lub-

startIndex plus count jest większy niż liczba elementów w valueelemecie .

Za mało pamięci.

Przykłady

Poniższy przykład łączy dwa elementy z tablicy nazw owoców.

// Sample for String::Join(String, String[], int int)
using namespace System;
int main()
{
   array<String^>^val = {"apple","orange","grape","pear"};
   String^ sep = ", ";
   String^ result;
   Console::WriteLine( "sep = '{0}'", sep );
   Console::WriteLine( "val[] = {{'{0}' '{1}' '{2}' '{3}'}}", val[ 0 ], val[ 1 ], val[ 2 ], val[ 3 ] );
   result = String::Join( sep, val, 1, 2 );
   Console::WriteLine( "String::Join(sep, val, 1, 2) = '{0}'", result );
}

/*
This example produces the following results:
sep = ', '
val[] = {'apple' 'orange' 'grape' 'pear'}
String::Join(sep, val, 1, 2) = 'orange, grape'
*/
String[] val = {"apple", "orange", "grape", "pear"};
String sep   = ", ";
String result;

Console.WriteLine("sep = '{0}'", sep);
Console.WriteLine("val[] = {{'{0}' '{1}' '{2}' '{3}'}}", val[0], val[1], val[2], val[3]);
result = String.Join(sep, val, 1, 2);
Console.WriteLine("String.Join(sep, val, 1, 2) = '{0}'", result);

// This example produces the following results:
// sep = ', '
// val[] = {'apple' 'orange' 'grape' 'pear'}
// String.Join(sep, val, 1, 2) = 'orange, grape'
open System

let vals = [| "apple"; "orange"; "grape"; "pear" |]
let sep   = ", "

printfn $"sep = '{sep}'"
printfn $"vals[] = {{'{vals[0]}' '{vals[1]}' '{vals[2]}' '{vals[3]}'}}"
let result = String.Join(sep, vals, 1, 2)
printfn $"String.Join(sep, vals, 1, 2) = '{result}'"

// This example produces the following results:
// sep = ', '
// vals[] = {'apple' 'orange' 'grape' 'pear'}
// String.Join(sep, vals, 1, 2) = 'orange, grape'
Class Sample
   Public Shared Sub Main()
      Dim val As [String]() =  {"apple", "orange", "grape", "pear"}
      Dim sep As [String] = ", "
      Dim result As [String]
      
      Console.WriteLine("sep = '{0}'", sep)
      Console.WriteLine("val() = {{'{0}' '{1}' '{2}' '{3}'}}", val(0), val(1), val(2), val(3))
      result = [String].Join(sep, val, 1, 2)
      Console.WriteLine("String.Join(sep, val, 1, 2) = '{0}'", result)
   End Sub
End Class 
'This example displays the following output:
'       sep = ', '
'       val() = {'apple' 'orange' 'grape' 'pear'}
'       String.Join(sep, val, 1, 2) = 'orange, grape'

Uwagi

Jeśli na przykład separator to ", " i elementy to value "apple", "orange", "grape" i "pear", zwraca wartość "orange, Join(separator, value, 1, 2) grape".

Jeśli separator jest to null, jest używany pusty ciąg (String.Empty). Jeśli jakikolwiek element w pliku value to null, zamiast tego jest używany pusty ciąg.

Zobacz też

Dotyczy

Join<T>(Char, IEnumerable<T>)

Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs

Łączy elementy członkowskie kolekcji przy użyciu określonego separatora między poszczególnymi elementami członkowskim.

public:
generic <typename T>
 static System::String ^ Join(char separator, System::Collections::Generic::IEnumerable<T> ^ values);
public static string Join<T> (char separator, System.Collections.Generic.IEnumerable<T> values);
static member Join : char * seq<'T> -> string
Public Shared Function Join(Of T) (separator As Char, values As IEnumerable(Of T)) As String

Parametry typu

T

Typ elementów członkowskich elementu values.

Parametry

separator
Char

Znak do użycia jako separator. separator jest uwzględniany w zwracanym ciągu tylko wtedy, gdy values ma więcej niż jeden element.

values
IEnumerable<T>

Kolekcja zawierająca obiekty do łączenia.

Zwraca

Ciąg składający się z elementów członkowskich values rozdzielanych znakiem separator .

-lub-

Empty jeśli values nie ma żadnych elementów.

Wyjątki

values to null.

Długość wynikowego ciągu przepełnia maksymalną dozwoloną długość (Int32.MaxValue).

Dotyczy

Join<T>(String, IEnumerable<T>)

Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs
Źródło:
String.Manipulation.cs

Łączy elementy członkowskie kolekcji przy użyciu określonego separatora między poszczególnymi elementami członkowskim.

public:
generic <typename T>
 static System::String ^ Join(System::String ^ separator, System::Collections::Generic::IEnumerable<T> ^ values);
public static string Join<T> (string separator, System.Collections.Generic.IEnumerable<T> values);
public static string Join<T> (string? separator, System.Collections.Generic.IEnumerable<T> values);
[System.Runtime.InteropServices.ComVisible(false)]
public static string Join<T> (string separator, System.Collections.Generic.IEnumerable<T> values);
static member Join : string * seq<'T> -> string
[<System.Runtime.InteropServices.ComVisible(false)>]
static member Join : string * seq<'T> -> string
Public Shared Function Join(Of T) (separator As String, values As IEnumerable(Of T)) As String

Parametry typu

T

Typ elementów członkowskich elementu values.

Parametry

separator
String

Ciąg używany jako separator. separator jest uwzględniany w zwracanym ciągu tylko wtedy, gdy values ma więcej niż jeden element.

values
IEnumerable<T>

Kolekcja zawierająca obiekty do łączenia.

Zwraca

Ciąg składający się z elementów values rozdzielanych przez separator ciąg.

-lub-

Empty jeśli values nie ma żadnych elementów.

Atrybuty

Wyjątki

values to null.

Długość wynikowego ciągu przepełnia maksymalną dozwoloną długość (Int32.MaxValue).

Przykłady

W poniższym przykładzie użyto algorytmu nazwanego sitem Eratostenesa do obliczania liczb pierwszych, których wartość jest równa 100 lub mniejsza. Przypisuje wynik do List<T> obiektu liczby całkowitej typu, który następnie przekazuje do Join<T>(String, IEnumerable<T>) metody .

using System;
using System.Collections.Generic;

public class Example
{
   public static void Main()
   {
      int maxPrime = 100;
      List<int> primes = GetPrimes(maxPrime);
      Console.WriteLine("Primes less than {0}:", maxPrime);
      Console.WriteLine("   {0}", String.Join(" ", primes));
   }

   private static List<int> GetPrimes(int maxPrime)
   {
      Array values = Array.CreateInstance(typeof(int), 
                              new int[] { maxPrime - 1}, new int[] { 2 });
      // Use Sieve of Eratosthenes to determine prime numbers.
      for (int ctr = values.GetLowerBound(0); ctr <= (int) Math.Ceiling(Math.Sqrt(values.GetUpperBound(0))); ctr++)
      {
                           
         if ((int) values.GetValue(ctr) == 1) continue;
         
         for (int multiplier = ctr; multiplier <=  maxPrime / 2; multiplier++)
            if (ctr * multiplier <= maxPrime)
               values.SetValue(1, ctr * multiplier);
      }      
      
      List<int> primes = new List<int>();
      for (int ctr = values.GetLowerBound(0); ctr <= values.GetUpperBound(0); ctr++)
         if ((int) values.GetValue(ctr) == 0) 
            primes.Add(ctr);
      return primes;
   }   
}
// The example displays the following output:
//    Primes less than 100:
//       2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
open System

let getPrimes maxPrime =
    let values = Array.CreateInstance(typeof<int>, [| maxPrime - 1 |], [| 2 |])
    // Use Sieve of Eratosthenes to determine prime numbers.
    for i = values.GetLowerBound 0 to values.GetUpperBound 0 |> float |> sqrt |> ceil |> int do
        if values.GetValue i <> 1 then
            for multiplier = i to maxPrime / 2 do
                if i * multiplier <= maxPrime then
                    values.SetValue(1, i * multiplier)

    let primes = ResizeArray()
    for i = values.GetLowerBound 0 to values.GetUpperBound 0 do
        if values.GetValue i :?> int = 0 then
            primes.Add i
    primes

let maxPrime = 100
let primes = getPrimes maxPrime
printfn $"Primes less than {maxPrime}:"
printfn $"""   {String.Join(" ", primes)}"""
// The example displays the following output:
//    Primes less than 100:
//       2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
Imports System.Collections.Generic

Module Example
   Public Sub Main()
      Dim maxPrime As Integer = 100
      Dim primes As List(Of Integer) = GetPrimes(maxPrime)
      Console.WriteLine("Primes less than {0}:", maxPrime)
      Console.WriteLine("   {0}", String.Join(" ", primes))
   End Sub
   
   Private Function GetPrimes(maxPrime As Integer) As List(Of Integer)
      Dim values As Array = Array.CreateInstance(GetType(Integer), _
                              New Integer() { maxPrime - 1}, New Integer(){ 2 }) 
        ' Use Sieve of Eratosthenes to determine prime numbers.
      For ctr As Integer = values.GetLowerBound(0) To _
                           CInt(Math.Ceiling(Math.Sqrt(values.GetUpperBound(0))))
         If CInt(values.GetValue(ctr)) = 1 Then Continue For
         
         For multiplier As Integer = ctr To maxPrime \ 2
            If ctr * multiplier <= maxPrime Then values.SetValue(1, ctr * multiplier)
         Next   
      Next      
      
      Dim primes As New System.Collections.Generic.List(Of Integer)
      For ctr As Integer = values.GetLowerBound(0) To values.GetUpperBound(0)
         If CInt(values.GetValue(ctr)) = 0 Then primes.Add(ctr)
      Next            
      Return primes
   End Function   
End Module
' The example displays the following output:
'    Primes less than 100:
'       2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97

Uwagi

Jeśli separator jest to null, jest używany pusty ciąg (String.Empty). Jeśli którykolwiek element członkowski ma valuesnullwartość , zostanie użyty pusty ciąg.

Join<T>(String, IEnumerable<T>) to metoda wygody, która umożliwia łączenie każdego elementu członkowskiego kolekcji bez uprzedniego IEnumerable<T> konwertowania ich na ciągi. Reprezentacja ciągu każdego obiektu w IEnumerable<T> kolekcji jest pochodna przez wywołanie metody tego obiektu ToString .

Ta metoda jest szczególnie przydatna w przypadku wyrażeń zapytań Language-Integrated Query (LINQ). Na przykład poniższy kod definiuje bardzo prostą Animal klasę zawierającą nazwę zwierzęcia i kolejność, do której należy. Następnie definiuje List<T> obiekt, który zawiera wiele Animal obiektów. Metoda rozszerzenia jest wywoływana Enumerable.Where w celu wyodrębnienia Animal obiektów, których Order właściwość jest równa "Gryzoni". Wynik jest przekazywany do Join<T>(String, IEnumerable<T>) metody .

using System;
using System.Collections.Generic;
using System.Linq;

public class Animal
{
   public string Kind;
   public string Order;
   
   public Animal(string kind, string order)
   {
      this.Kind = kind;
      this.Order = order;
   }
   
   public override string ToString()
   {
      return this.Kind;
   }
}

public class Example
{
   public static void Main()
   {
      List<Animal> animals = new List<Animal>();
      animals.Add(new Animal("Squirrel", "Rodent"));
      animals.Add(new Animal("Gray Wolf", "Carnivora"));
      animals.Add(new Animal("Capybara", "Rodent"));
      string output = String.Join(" ", animals.Where( animal => 
                      (animal.Order == "Rodent")));
      Console.WriteLine(output);  
   }
}
// The example displays the following output:
//      Squirrel Capybara
// This example uses F#'s Seq.filter function instead of Linq.
open System

type Animal =
  { Kind: string
    Order: string }
    override this.ToString() =
        this.Kind

let animals = ResizeArray()
animals.Add { Kind = "Squirrel"; Order = "Rodent" }
animals.Add { Kind = "Gray Wolf"; Order = "Carnivora" }
animals.Add { Kind = "Capybara"; Order = "Rodent" }
String.Join(" ", animals |> Seq.filter (fun animal -> animal.Order = "Rodent"))
|> printfn "%s"
// The example displays the following output:
//      Squirrel Capybara
Imports System.Collections.Generic

Public Class Animal
   Public Kind As String
   Public Order As String
   
   Public Sub New(kind As String, order As String)
      Me.Kind = kind
      Me.Order = order
   End Sub
   
   Public Overrides Function ToString() As String
      Return Me.Kind
   End Function
End Class

Module Example
   Public Sub Main()
      Dim animals As New List(Of Animal)
      animals.Add(New Animal("Squirrel", "Rodent"))
      animals.Add(New Animal("Gray Wolf", "Carnivora"))
      animals.Add(New Animal("Capybara", "Rodent")) 
      Dim output As String = String.Join(" ", animals.Where(Function(animal) _
                                           animal.Order = "Rodent"))
      Console.WriteLine(output)                                           
   End Sub
End Module
' The example displays the following output:
'      Squirrel Capybara

Zobacz też

Dotyczy