String是一系列字符值的序列。在Java中,String被视为对象。我们有一个由Java提供的String类,用于创建和操作字符串。
We have to convert the first letter of the word to lowercase and last letter of the word to uppercase.
In this article we will see how the first and last letter can be converted into lower and upper case respectively. Let’s explore.
假设输入字符串是“Hello”
After converting the first letter to lower and last letter to capital, the new string will be “hellO”
Suppose the input string is “Java”
After converting the first letter to lower and last letter to capital, the new string will be “javA”
Suppose the input string is “Programming”
将第一个字母转为小写,最后一个字母转为大写后,新字符串将为“programminG”
要获取字符串的长度,Java的String类提供了一个length()方法。
Below is the syntax for that −
str.length();
其中,str是字符串变量。
要从原始字符串中获取子字符串,Java String类提供了substring()方法。
Below is the syntax for that −
str.substring(int startIndex); str.substring(int startIndex, int endIndex);
其中,startIndex是包含的,endIndex是不包含的。
To get a character at a specified index Java String class provides the charAt() method.
Below is the syntax for that −
str.charAt(int index)
Where, index refers to the index of the character that you need.
要将不同类型的值转换为字符串值,Java的String类提供了valueOf()方法。
Below is the syntax for that −
String.valueOf(Object obj)
注意 - 这个问题也可以用数组的概念来解决。但是在这里,我们尝试了不使用数组概念来解决问题。同时,我们只使用了String类的内置方法。
步骤 1 - 通过初始化或用户输入获取字符串/单词。
Step 2 − Get the first and last letter by using the substring() method. Then convert it to lower and upper case by using toLowerCase() method and toUpperCase() method respectively.
第三步 - 使用substring()方法获取中间字符(除第一个和最后一个字符)。
第四步 - 将第一个、中间和最后一个值组合起来,得到最终的字符串/单词。
步骤 1 - 通过初始化或用户输入获取字符串/单词。
第二步 - 通过使用charAt()方法获取第一个和最后一个字母。然后分别使用toLowerCase()方法和toUpperCase()方法将其转换为小写和大写。
步骤 3 - 使用charAt()方法和for循环获取中间字符(除了第一个和最后一个字符)。
第四步 - 然后将第一个、中间和最后一个值组合在一起,得到最终的字符串/单词。
We have provided the solution in different approaches.
通过使用内置的substring()方法
By Using inbuilt charAt() Method
Let’s see the program along with its output one by one.
In this approach, we will make use of Algorithm-1
import java.util.Scanner; public class Main{ public static void main(String[] args) { //input string String str = "Java"; System.out.println("Original string is: "+str); //get size of the string int size = str.length(); //get last character and convert it to upper case String last = str.substring(size-1,size); String lastinUpper = last.toUpperCase(); //get first character and convert it to lower case String first = str.substring(0,1); String firstinLower = first.toLowerCase(); //get middle parts of the word, except first and last character String middle = str.substring(1,size-1); //combine everything and get the final string String result = firstinLower+middle+lastinUpper; //print result System.out.println("Updated string is: "+result); } }
Original string is: Java Updated string is: javA
在这种方法中,我们将利用Algorithm-2
public class Main{ public static void main(String[] args) { //input String String str = "Python"; System.out.println("Original string: "+str); //get length of string int size = str.length(); //find last character and convert it to upper case char last = str.charAt(size-1); String finalLast = (String.valueOf(last)).toUpperCase(); //find first character and convert it to lowercase char first = str.charAt(0); String finalFirst = (String.valueOf(first)).toLowerCase(); //find middle characters String middle=""; for(int i=1; i<size-1; i++){ String s = String.valueOf(str.charAt(i)); middle=middle+s; } //find the updated string String result = finalFirst+middle+finalLast; System.out.println("Updated string: "+result); } }
Original string: Python Updated string: pythoN
在本文中,我们探讨了如何使用不同的方法将单词的首字母转换为小写,并将单词的最后一个字母转换为大写字母。
以上是在Java中,将一个单词的最后一个字母大写,并将第一个字母小写的详细内容。更多信息请关注PHP中文网其他相关文章!