Metodo System::String::Join
Contenuti
[
Nascondere
]String::Join(const String&, const ArrayPtr<SharedPtr<Object>>&) method
Unisce l’array usando la stringa come separatore.
static String System::String::Join(const String &separator, const ArrayPtr<SharedPtr<Object>> &parts)
| Parametro | Tipo | Descrizione |
|---|---|---|
| separator | const String& | String da inserire tra gli elementi dell’array durante l’unione. |
| parts | const ArrayPtr<SharedPtr<Object>>& | Array di parti da unire. |
ReturnValue
String representing joint elements.
Vedi anche
- Class String
- Typedef ArrayPtr
- Typedef SharedPtr
- Class Object
- Class String
- Namespace System
- Library Aspose.Font for C++
String::Join(const String&, const ArrayPtr<String>&, int, int) method
Unisce l’array usando la stringa come separatore.
static String System::String::Join(const String &separator, const ArrayPtr<String> &parts, int startIndex=0, int count=-1)
| Parametro | Tipo | Descrizione |
|---|---|---|
| separator | const String& | String da inserire tra gli elementi dell’array durante l’unione. |
| parts | const ArrayPtr<String>& | Array di parti da unire. |
| startIndex | int | Primo indice nell’array da cui iniziare l’unione. |
| count | int | Numero di elementi dell’array da unire. -1 significa ‘fino alla fine dell’array’. |
ReturnValue
String representing joint array elements.
Vedi anche
- Class String
- Typedef ArrayPtr
- Class String
- Namespace System
- Library Aspose.Font for C++
String::Join(const String&, const SharedPtr<System::Collections::Generic::IEnumerable<String>>&) method
Unisce l’array usando la stringa come separatore.
static String System::String::Join(const String &separator, const SharedPtr<System::Collections::Generic::IEnumerable<String>> &parts)
| Parametro | Tipo | Descrizione |
|---|---|---|
| separator | const String& | String da inserire tra gli elementi dell’array durante l’unione. |
| parti | const SharedPtr<System::Collections::Generic::IEnumerable<String>>& | - oggetto enumerabile di parti |
ReturnValue
String representing joint elements.
Vedi anche
- Class String
- Typedef SharedPtr
- Class IEnumerable
- Class String
- Namespace System
- Library Aspose.Font for C++
String::Join(const String&, const System::Details::ArrayView<String>&, int, int) method
Unisce l’array usando la stringa come separatore.
static String System::String::Join(const String &separator, const System::Details::ArrayView<String> &parts, int startIndex=0, int count=-1)
| Parametro | Tipo | Descrizione |
|---|---|---|
| separator | const String& | String da inserire tra gli elementi dell’array durante l’unione. |
| parti | const System::Details::ArrayView<String>& | ArrayView di parti da unire. |
| startIndex | int | Primo indice nell’array da cui iniziare l’unione. |
| count | int | Numero di elementi dell’array da unire. -1 significa ‘fino alla fine dell’array’. |
ReturnValue
String representing joint array elements.
Vedi anche
- Class String
- Class String
- Namespace System
- Library Aspose.Font for C++