Java 正規表現認識機能のサンプルにはどのようなものがありますか?
Java 正規表現 (reg ex) を使用したウィジェットと Live Text のサンプル認識エンジンの一部を以下に示します。
Sample 1
米国の郵便番号の正規表現のサンプルを示します。
- 認識者名
- 米国の郵便番号
- 正規表現 (reg ex)
- \b[0-9]{5}\b
- 説明
- 前後に単語区切りを含む 5 桁の数字
- 例
- 01886
- グループ0
- 01886
Sample 2
証券取引所の正規表現のサンプルを示します。
- 認識者名
- 取引所の銘柄記号
- 正規表現 (reg ex)
- (NYSE|AMEX|NASDAQ):([AZ]{1,4})
- 説明
- これらの交換の後にコロンと大文字の記号が続きます
- 例
- ニューヨーク証券取引所:IBM
- グループ0
- ニューヨーク証券取引所:IBM
- グループ1
- ニューヨーク証券取引所
- グループ2
- IBM®
Sample 3
A sample US currency regular expression is shown.
- 認識者名
- US Currency Recognizer
- 正規表現 (reg ex)
- \$(\d*)(\.\d{2})?
- 説明
- A dollar sign, followed by any amount of numbers and, optionally, a period followed by two digits
- 例
- $215.95
- グループ0
- $215.95
- グループ1
- 215
- グループ2
- .95
For a list of Java regular expressions and tools, reference the following sites:
java.sun.com/j2se/1.5.0/docs/api/java/util/regex/Pattern.html
regex.powertoy.org