( regexp )
Legend
| → | Has corresponding code |
| → | No direct match, but an alternative exists |
| → | No corresponding code |
| - | TODO |
| ( .. ) | Not localized |
| Example | Python pytest |
C++ GoogleTest |
Swift Testing |
Kotlin jUnit |
Bash bats |
|---|---|---|---|---|---|
| ( regexp_is_match ) | → | - | - | - | - |
| ( regexp_find_first ) | search(pattern, text) | - | - | - | - |
| ( regexp_find_all ) | findall(pattern, text) | - | - | - | - |
| ( regexp_capture_first ) | m.group(n) | - | - | - | - |
| ( regexp_capture_all ) | m.group(n) | - | - | - | - |
| ( regexp_loop_with_match_result ) | findall | - | - | - | - |
| ( regexp_flags ) | → | - | - | - | - |
| ( regexp_split ) | TODO: ... | - | - | - | - |
| ( regexp_replace_first ) | TODO: ... | - | - | - | - |
| ( regexp_replace_all ) | TODO: ... | - | - | - | - |
| ( regexp_replace_backward_reference ) | TODO: ... | - | - | - | - |
| ( search_backward_reference ) | → | - | - | - | - |