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.
ハイブの IP アドレスの最初の 2 オクテットだけを抽出したい。Hiveでサポートされている同等の正規表現を誰か教えてもらえますか?
たとえば、ip_address '192.96.45.33' から '192.96.0.0' を抽出します。
192\\.96\\.\\d{3}\\.\\d{3}
HiveはJavaフォーマットを使用するため、これは機能するはずです。
Java
また
192\\.96\\.(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.)(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)