在Java中,将一个单词的最后一个字母大写,并将第一个字母小写

2023年 8月 28日 117.9k 0

在Java中,将一个单词的最后一个字母大写,并将第一个字母小写

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.

展示一些实例给你看

Instance-1

的中文翻译为:

实例-1

假设输入字符串是“Hello”

After converting the first letter to lower and last letter to capital, the new string will be “hellO”

Instance-2

的翻译为:

Instance-2

Suppose the input string is “Java”

After converting the first letter to lower and last letter to capital, the new string will be “javA”

Instance-3

Suppose the input string is “Programming”

将第一个字母转为小写,最后一个字母转为大写后,新字符串将为“programminG”

Syntax

要获取字符串的长度,Java的String类提供了一个length()方法。

Below is the syntax for that −

str.length();

登录后复制

其中,str是字符串变量。

要从原始字符串中获取子字符串,Java String类提供了substring()方法。

Syntax

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.

Syntax

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()方法。

Syntax

Below is the syntax for that −

String.valueOf(Object obj)

登录后复制

Algorithm

注意 - 这个问题也可以用数组的概念来解决。但是在这里,我们尝试了不使用数组概念来解决问题。同时,我们只使用了String类的内置方法。

Algorithm-1

  • 步骤 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()方法获取中间字符(除第一个和最后一个字符)。

  • 第四步 - 将第一个、中间和最后一个值组合起来,得到最终的字符串/单词。

Algorithm-2

  • 步骤 1 - 通过初始化或用户输入获取字符串/单词。

  • 第二步 - 通过使用charAt()方法获取第一个和最后一个字母。然后分别使用toLowerCase()方法和toUpperCase()方法将其转换为小写和大写。

  • 步骤 3 - 使用charAt()方法和for循环获取中间字符(除了第一个和最后一个字符)。

  • 第四步 - 然后将第一个、中间和最后一个值组合在一起,得到最终的字符串/单词。

Multiple Approaches

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.

Approach-1: By Using Inbuilt substring Method

Example

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);
}
}

登录后复制

Output

Original string is: Java
Updated string is: javA

登录后复制

Approach-2: By Using Inbuilt charAt() Method

Example

在这种方法中,我们将利用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

相关文章

JavaScript2024新功能:Object.groupBy、正则表达式v标志
PHP trim 函数对多字节字符的使用和限制
新函数 json_validate() 、randomizer 类扩展…20 个PHP 8.3 新特性全面解析
使用HTMX为WordPress增效:如何在不使用复杂框架的情况下增强平台功能
为React 19做准备:WordPress 6.6用户指南
如何删除WordPress中的所有评论

发布评论