feat: add regex support to operator_contains#330
Merged
Conversation
When STRING2 matches /pattern/ or /pattern/flags format, perform regex matching instead of plain substring search. Invalid regex patterns return false. Existing plain string behavior is preserved. Closes #329 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
🚀 Preview deployed: https://smalruby.jp/smalruby3-editor/feature/operator-contains-regex/ |
github-actions Bot
pushed a commit
that referenced
this pull request
Mar 18, 2026
…tor-contains-regex feat: add regex support to operator_contains
This was referenced Mar 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
operator_containsブロックの STRING2 に/pattern/flags形式を指定すると、正規表現マッチングを行うようにする拡張。/pattern/または/pattern/flags形式を検出し、RegExpでマッチングg,i,m,s,u,yをサポートfalseを返す(エラーにならない)Implementation Steps
containsメソッドに正規表現ロジック実装Definition of Done
operator_containsブロックの STRING2 に/\d+/を入力し、STRING1 に"abc123"を入力してtrueになる/hello/iで大文字小文字無視マッチが動作するapplecontainsa)が引き続き動作する/[/)でエラーにならないRisks
/文字列/で部分文字列検索するケースが正規表現として解釈される → 稀なケースのため許容Closes #329