logo

Java Character isAlphabetic() メソッド

Character クラスの isAlphabetic(intcodePoint) メソッドは、指定された文字がアルファベットかどうかを判断します。

次の特徴を持つ文字はアルファベットとみなされます。

  • 大文字
  • 小文字_文字
  • TITLECASE_LETTER
  • MODIFIER_LETTER
  • OTHER_LETTER
  • 文字番号または
  • Unicode 標準によって定義されているその他のアルファベット。

構文

 public static Boolean isAlphabetic(int codePoint) 

パラメータ

コードポイント :テスト対象のキャラクターです。

ハッシュマップ

戻り値

isAlphabetic(intcodePoint) メソッドは、文字が Unicode アルファベット文字の場合に true を返します。それ以外の場合、このメソッドは false を返します。

例1

 public class JavaCharacterisAlphabeticExample1 { public static void main(String[] args) { char codepoint1 = '0'; char codepoint2 = '1'; boolean b1 = Character.isAlphabetic(codepoint1); boolean b2 = Character.isAlphabetic(codepoint2); System.out.println('The returned value for the first character is given as:'+' '+b1); System.out.println('The returned value for the first character is given as:'+' '+b2); } } 
今すぐテストしてください

出力:

 The returned value for the first character is given as: false The returned value for the first character is given as: false 

例 2

 public class JavaCharacterisAlphabeticExample2 { public static void main(String[] args) { // Initialize the codepoints int codepoint1 = 87; int codepoint2 = 49; int codepoint3 = 63; // Check if the first codepoint is alphabet or not. boolean checkAlp1 = Character.isAlphabetic(codepoint1); if(checkAlp1){ System.err.print('Codepoint ''+codepoint1+'' is an alphabet.
'); } else{ System.out.print('Codepoint ''+codepoint1+'' is not an alphabet.
'); } // Check if the second codepoint is alphabet or not. boolean checkAlp2 = Character.isAlphabetic(codepoint2); if(checkAlp2){ System.err.print('Codepoint ''+codepoint2+'' is an alphabet.
'); } else{ System.out.print('Codepoint ''+codepoint2+'' is not an alphabet.
'); } // Check if the third codepoint is alphabet or not. boolean checkAlp3 = Character.isAlphabetic(codepoint3); if(checkAlp3){ System.err.print('Codepoint ''+codepoint3+'' is an alphabet.
'); } else{ System.out.print('Codepoint ''+codepoint3+'' is not an alphabet.
'); } } } 
今すぐテストしてください

出力:

 Codepoint '87' is an alphabet. Codepoint '49' is not an alphabet. Codepoint '63' is not an alphabet. 

例 3

 public class JavaCharacterisAlphabeticExample3 { public static void main(String[] args) { char codepoint1 = '1'; char codepoint2 = 'A'; char codepoint3 ='B'; boolean b1 = Character.isAlphabetic(codepoint1); boolean b2 = Character.isAlphabetic(codepoint2); boolean b3 = Character.isAlphabetic(codepoint3); System.out.println('The returned value for the first character is given as:'+' '+b1); System.out.println('The returned value for the second character is given as:'+' '+b2); System.out.println('The returned value for the third character is given as:'+' '+b3); } } 
今すぐテストしてください

出力:

 The returned value for the first character is given as: false The returned value for the second character is given as: true The returned value for the third character is given as: true