| PHP |
|---|
| public static function GetTokens(string $text, ?string $splitString = null) |
| PHP |
|---|
// Get string tokens.
private static function GetTokens()
{
$text = "Now|is|the|time.";
$values = LJC::GetTokens($text, "/\|/");
$result = join(", ", $values);
// result:
// Now, is, the, time.
}
|