digital-garden/dev/snippet/Парсинг URL c помощью регулярки.md
Struchkov Mark e730bf16b8
All checks were successful
continuous-integration/drone/push Build is passing
Добавил сниппетов
2024-09-04 20:02:42 +03:00

25 lines
750 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
tags:
- maturity/🌱
date:
- - 2023-11-20
zero-link:
- "[[../../../../garden/ru/meta/zero/00 Снипеты для Java|00 Снипеты для Java]]"
parents: []
linked:
article: https://note.struchkov.dev/parsingh-url-c-pomoshchiu-rieghuliarki/
---
Разделение URL-адреса на протокол, домен, порт и URI с помощью регулярного выражения.
```java
// Split URL into protocol, domain, port and URI
Pattern pattern = Pattern.compile("(https?://)([^:^/]*)(:\\d*)?(.*)?");
Matcher matcher = pattern.matcher(url);
matcher.find();
String protocol = matcher.group(1);
String domain = matcher.group(2);
String port = matcher.group(3);
String uri = matcher.group(4);
```