Split
Splits the Format items by the given search character.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Method
- Namespace: Unity.SmartStrings.Core.Parsing
- Assembly: UnityEngine.SmartStringsModule
Split(char)
Splits the Format items by the given search character.
public IList<Format> Split(char search)
Parameters
Character used to split.
Returns
Type | Description |
|---|---|
| IList<Format> | The list of Format segments produced by splitting on the character. |
Split(char, int)
Splits the Format items by the given search character.
public IList<Format> Split(char search, int maxCount)
Parameters
Returns
Type | Description |
|---|---|
| IList<Format> | The list of Format segments produced by splitting on the character. |