Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下の文字列からレコード番号を抽出するには、正規表現が必要です。
String extract = "Purchase Order HDL/17-04-2013/PRO_1311 is saved successfully"
出力:
HDL/17-04-2013/PRO_1311
グーグルで試しましたが、結果を取得できませんでした。Plsは提案します。
何かのようなもの:
"Purchase Order ([A-Z]+/\d{2}-\d{2}-\d{4}/[A-Z]+_\d+) is saved successfully"
このようにして、最初のキャプチャ グループで必要なものを取得します。
もちろん、これは発注書のパターンに依存するため、正規表現について読む必要があります。