System::String::Join メソッド
コンテンツ
[
隠れる
]String::Join(const String&, const ArrayPtr<SharedPtr<Object>>&) method
文字列を区切り文字として配列を結合します。
static String System::String::Join(const String &separator, const ArrayPtr<SharedPtr<Object>> &parts)
| パラメーター | 型 | 説明 |
|---|---|---|
| separator | const String& | String を配列要素間に挿入して結合します。 |
| parts | const ArrayPtr<SharedPtr<Object>>& | 結合する部品の Array。 |
ReturnValue
String representing joint elements.
参照
- Class String
- Typedef ArrayPtr
- Typedef SharedPtr
- Class Object
- Class String
- Namespace System
- Library Aspose.Page for C++
String::Join(const String&, const ArrayPtr<String>&, int, int) method
文字列を区切り文字として配列を結合します。
static String System::String::Join(const String &separator, const ArrayPtr<String> &parts, int startIndex=0, int count=-1)
| パラメーター | 型 | 説明 |
|---|---|---|
| separator | const String& | String を配列要素間に挿入して結合します。 |
| parts | const ArrayPtr<String>& | 結合する部品の Array。 |
| startIndex | int | 結合を開始する配列の最初のインデックス。 |
| count | int | 結合する配列要素数。-1 は「配列の末尾まで」を意味します。 |
ReturnValue
String representing joint array elements.
参照
- Class String
- Typedef ArrayPtr
- Class String
- Namespace System
- Library Aspose.Page for C++
String::Join(const String&, const SharedPtr<System::Collections::Generic::IEnumerable<String>>&) method
文字列を区切り文字として配列を結合します。
static String System::String::Join(const String &separator, const SharedPtr<System::Collections::Generic::IEnumerable<String>> &parts)
| パラメーター | 型 | 説明 |
|---|---|---|
| separator | const String& | String を配列要素間に挿入して結合します。 |
| 部品 | const SharedPtr<System::Collections::Generic::IEnumerable<String>>& | - 部品 列挙可能オブジェクト |
ReturnValue
String representing joint elements.
参照
- Class String
- Typedef SharedPtr
- Class IEnumerable
- Class String
- Namespace System
- Library Aspose.Page for C++
String::Join(const String&, const System::Details::ArrayView<String>&, int, int) method
文字列を区切り文字として配列を結合します。
static String System::String::Join(const String &separator, const System::Details::ArrayView<String> &parts, int startIndex=0, int count=-1)
| パラメーター | 型 | 説明 |
|---|---|---|
| separator | const String& | String を配列要素間に挿入して結合します。 |
| 部品 | const System::Details::ArrayView<String>& | 結合する部品の ArrayView。 |
| startIndex | int | 結合を開始する配列の最初のインデックス。 |
| count | int | 結合する配列要素数。-1 は「配列の末尾まで」を意味します。 |
ReturnValue
String representing joint array elements.
参照
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++