This question already has answers here:
How to get first character of string?
                            
                                (14个回答)
                            
                    
                5年前关闭。
        

    

我想知道我如何看待以A或B开头的所有名称或类似示例的名称,我有David Daniel Jose Alejandro,我只希望以A开头的名称可以有人告诉我。
名称=以A开头
现在清楚我需要什么吗?

最佳答案

我认为您正在寻找:

How to get first character of string?

基本上

if (yourstring.charAt(0) == 'A'){
  *your desired code*
}

09-26 18:47