PHP の natsort 関数と同等の Python: 自然順序ソート
PHP natsort 関数は、「自然順序」を使用してリストをソートするために使用されます。人間が読める方法で数値を含む文字列を処理するアルゴリズム。 Python には natsort とまったく同等のものはありませんが、利用可能なカスタム ソリューションはあります。
1 つのアプローチは、Python の組み込み関数を組み合わせて使用することです。
<code class="python">import re def try_int(s): "Convert to integer if possible." try: return int(s) except: return s def natsort_key(s): "Used internally to get a tuple by which s is sorted." return map(try_int, re.findall(r'(\d+|\D+)', s)) def natcmp(a, b): "Natural string comparison, case sensitive." return cmp(natsort_key(a), natsort_key(b)) def natcasecmp(a, b): "Natural string comparison, ignores case." return natcmp(a.lower(), b.lower())</code>
To sort a自然順序を使用したリスト:
<code class="python">l = ['image1.jpg', 'image15.jpg', 'image12.jpg', 'image3.jpg'] l.sort(natcasecmp)</code>
Unicode 文字列をサポートするもう 1 つのアプローチは、Python の Natural_key 関数に基づくカスタム キー関数を使用することです:
<code class="python">import re def natural_key(string_): """See https://blog.codinghorror.com/sorting-for-humans-natural-sort-order/""" return [int(s) if s.isdigit() else s for s in re.split(r'(\d+)', string_)]</code>
例:
<code class="python">l = ['image1.jpg', 'image15.jpg', 'image12.jpg', 'image3.jpg'] l.sort(key=natural_key)</code>
以上がPHP の natsort 関数のような自然な順序の並べ替えを Python で実現するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。