ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
From: sawadatsuyoshi@gmail.com
To: ruby-core@ruby-lang.org
Subject: [ruby-core:97939] [Ruby master Feature#16796] Assigning local variables when using `case when regexp`
Date: Fri, 17 Apr 2020 10:20:46 +0000 (UTC)	[thread overview]
Message-ID: <redmine.journal-85162.20200417102046.26731@ruby-lang.org> (raw)
In-Reply-To: redmine.issue-16796.20200417082329.26731@ruby-lang.org

Issue #16796 has been updated by sawa (Tsuyoshi Sawada).


I have met such use cases, and agree this would be useful.

Alternatively, in order to access even unnamed matches, assigning the last matched data to a variable with the following syntax may be useful.

```ruby
case "str"
when /s(?<mid>.)r/ => match_data
  match_data[:mid] # => "t"
end
```

```ruby
case "str"
when /s(.)r/ => match_data
  match_data[1] # => "t"
end
```


----------------------------------------
Feature #16796: Assigning local variables when using `case when regexp`
https://bugs.ruby-lang.org/issues/16796#change-85162

* Author: UlyssesZhan (有丘 詹)
* Status: Open
* Priority: Normal
----------------------------------------
I want to use
```ruby
case "str"
when /s(?<mid>.)r/
  p mid
end
```
instead of
```ruby
case
when /s(?<mid>.)r/ =~ "str"
  p mid
end
```
I also do not like using `$1`.

This feature is extremely useful when there are a lot of `when`s.



-- 
https://bugs.ruby-lang.org/

  parent reply	other threads:[~2020-04-17 10:20 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-17  8:23 [ruby-core:97935] [Ruby master Feature#16796] Assigning local variables when using `case when regexp` UlyssesZhan
2020-04-17  8:53 ` [ruby-core:97936] " nobu
2020-04-17 10:20 ` sawadatsuyoshi [this message]
2020-04-17 11:11 ` [ruby-core:97940] " shyouhei
2020-04-17 16:38 ` [ruby-core:97946] " shevegen
2020-04-18 12:48 ` [ruby-core:97949] " matz
2022-11-14  9:52 ` [ruby-core:110747] " milouse

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.ruby-lang.org/en/community/mailing-lists/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=redmine.journal-85162.20200417102046.26731@ruby-lang.org \
    --to=ruby-core@ruby-lang.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).