( regexp )

凡例
対応コードあり
直接対応していないが代替の書き方あり
対応コードなし
-未確認
( .. )ローカライズまだ
Example Python
pytest
PHP
PHPUnit
Swift
Testing
Csharp
xunit
Bash
bats
Powershell
pester
C++
GoogleTest
JavaScript
Jest
Kotlin
jUnit
( regexp_is_match ) - - - [[ target =~ pattern ]] - - - -
( 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 ) re.split() - - - - - - - -
( regexp_replace_first ) re.sub(.., count=1) - - - - - - - -
( regexp_replace_all ) re.sub() - - - - - - - -
( regexp_replace_backward_reference ) \1,\2,.. - - - - - - - -
( search_backward_reference ) - - - - - - - -