Pythonのisnumeric関数で文字列が数字の形をしているかどうかを判定する

スポンサーリンク

Python String isnumeric() 関数は、入力文字列中のすべての文字が数値型であることが判明した場合に True を返し、そうでない場合に False を返します。

数値文字は以下のような型があります。

  • numeric_character=Decimal
  • numeric_character=Digit(数字)
  • numeric_character=Numeric(数字)

構文は以下の様な感じです。

構文:

isnumeric() の引数。isnumeric()関数は、入力としていかなる引数も取らない。

---



## Python isnumeric() Examples

Example 1:

Fake tags

Output:

False code
Example 2:

False tag

Output:

False code
Example 3: Special Unicode characters as the input string

False tag

Output:

False code
Example 4:

False tag

Output:

False code

---False code



## Unicode のすべての数値文字にアクセスする

unicodedata` モジュールは、すべての Unicode 数値文字を取得するために使用されます。

<div class="wp-block-syntaxhighlighter-code"><div><div class="syntaxhighlighter nogutter python" id="highlighter_166357"><table border="0" cellpadding="0" cellspacing="0"><tbody><tr><td class="code"><div class="container"><div class="line number1 index0 alt2"><code class="python plain">string </code><code class="python keyword">=</code> <code class="python string">'124678953'</code></div><div class="line number2 index1 alt1"> </div><div class="line number3 index2 alt2"><code class="python functions">print</code><code class="python plain">(string.isnumeric())</code></div></div></td></tr></tbody></table></div></div></div>

出力します。

True
“`

スポンサーリンク

まとめ

以上、今回はPython Stringのisnumeric()関数の学習と実装を行いました。

タイトルとURLをコピーしました