( string_split )
Legend
| → | Has corresponding code |
| → | No direct match, but an alternative exists |
| → | No corresponding code |
| - | TODO |
| ( .. ) | Not localized |
| Example | Python pytest |
PHP PHPUnit |
Swift Testing |
Csharp xunit |
Bash bats |
Powershell pester |
C++ GoogleTest |
JavaScript Jest |
Kotlin jUnit |
|---|---|---|---|---|---|---|---|---|---|
| ( string_split_to_characters ) | list(s) | str_split($s) | - | - | - | - | - | - | - |
| ( string_split_with_separator ) | s.split(d) | explode($separator, $s) | - | - | - | - | - | - | - |
| ( string_split_with_regexp ) | re.split(d, s) | preg_split($pattern, $s) | - | - | - | - | - | - | - |
| ( split_words ) | s.split() | preg_split('/\s+/', $s) | - | - | - | - | - | - | - |
| ( join_strings ) | d.join(elems) | implode($separator, $elems) | - | - | - | - | - | - | - |
| ( string_split_lines ) | splitlines | → | - | - | - | - | - | - | - |
| ( split_when_last_element_is_empty ) | → | → | - | - | - | - | - | - | - |