首頁  >  文章  >  Java  >  在Java中,將一個單字的最後一個字母大寫,並將第一個字母小寫

在Java中,將一個單字的最後一個字母大寫,並將第一個字母小寫

PHPz
PHPz轉載
2023-08-20 10:05:07721瀏覽

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

Output

#
Original string: Python
Updated string: pythoN

在本文中,我們探討如何使用不同的方法將單字的首字母轉換為小寫,並將單字的最後一個字母轉換為大寫字母。

以上是在Java中,將一個單字的最後一個字母大寫,並將第一個字母小寫的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除