正規表現を使用せずに URL からホスト名のルートを抽出するにはどうすればよいですか?

DDD
リリース: 2024-11-14 21:31:02
オリジナル
673 人が閲覧しました

How to Extract Hostname Root from a URL Without Regular Expressions?

Extracting Hostname Root from a URL without Regular Expressions

In the quest to isolate the root of a URL from a text string, there exists a clever technique that bypasses the often criticized performance inefficiencies of regular expressions. This method leverages the hidden capabilities of a simple HTML anchor element.

Solution:

  1. Create an HTML anchor element: .
  2. Set the element's href attribute to the URL in question.
  3. The hostname property of the anchor element will now contain the desired root domain, e.g., "www.example.com".

Example:

To demonstrate, consider the following function:

function url_domain(data) {
  var a = document.createElement('a');
  a.href = data;
  return a.hostname;
}
ログイン後にコピー

Using this function, we can extract the domain root from any given URL like so:

url_domain("http://www.example.com/12xy45") // "www.example.com"
url_domain("http://example.com/random") // "example.com"
ログイン後にコピー

This method offers a streamlined and efficient solution for extracting hostname roots, circumventing the perceived drawbacks associated with regular expressions in such scenarios.

以上が正規表現を使用せずに URL からホスト名のルートを抽出するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート