-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,19 @@ | ||
--- | ||
title: Regular expression (正規表現) | ||
slug: Glossary/Regular_expression | ||
l10n: | ||
sourceCommit: ada5fa5ef15eadd44b549ecf906423b4a2092f34 | ||
--- | ||
|
||
{{GlossarySidebar}} | ||
|
||
**正規表現** (または _regex_) は、検索でどの文字の連続が出てくるのかを決めるルールです。 | ||
|
||
正規表現はさまざまな言語で実装されてますが、一番有名な実装は Perl による実装です。それは PCRE (_Perl Compatible Regular Expression_) といわれる独自の実装エコシステムを生み出しました。ウェブ上では、{{glossary("JavaScript")}} は {{jsxref("RegExp")}} オブジェクトを介して別の正規表現の実装を提供します。 | ||
正規表現はさまざまな言語で実装されてますが、一番有名な実装は Perl による実装です。それは PCRE (_Perl Compatible Regular Expression_) といわれる独自の実装エコシステムを生み出しました。ウェブ上では、{{glossary("JavaScript")}} は {{jsxref("RegExp")}} オブジェクトを介して別の正規表現の実装を提供します。 | ||
|
||
## 関連項目 | ||
## 関連情報 | ||
|
||
### 一般知識 | ||
|
||
- Wikipedia の [正規表現](https://ja.wikipedia.org/wiki/正規表現) | ||
- [Interactive tutorial](http://regexone.com/) | ||
- [正規表現](https://ja.wikipedia.org/wiki/正規表現)(ウィキペディア) | ||
- [Interactive tutorial](https://regexone.com/) | ||
- [可視化された正規表現](http://regexper.com/) | ||
|
||
### 技術リファレンス | ||
|
||
- [JavaScript で正規表現を書く](/ja/docs/Web/JavaScript/Guide/Regular_Expressions) | ||
- [JavaScript で正規表現を書く](/ja/docs/Web/JavaScript/Guide/Regular_expressions) |