5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

カンマ区切り行の正規表現

Last updated at Posted at 2015-02-27

カンマ区切りの正規表現(AAA,BBB,CCC,...)

^([^,]+,)+[^,]+$

カンマ区切り、コロン区切りの正規表現(AAA:AAA,BBB:BBB,CCC:CCC,...)

^([^,:]+:[^,:]+,)+[^,:]+:[^,:]+$
5
5
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?