當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Typescript String toUpperCase()用法及代碼示例


toUpperCase()是TypeScript中的內置函數,用於將字符串中的字符轉換為大寫。

用法:

string.toUpperCase( ) 

參數:此方法不接受任何參數。
返回值:此方法以大寫形式返回字符串。
下麵的示例說明TypeScript中的String toUpperCase()方法

範例1:

的JavaScript



<script> 
    // Original strings 
    var str = "Geeksforgeeks - Best Platform";  
  
    // use of String toUpperCase() Method 
    var newstr = str.toUpperCase()  
    console.log(newstr); 
</script>

輸出:

GEEKSFORGEEKS - BEST PLATFORM

範例2:

的JavaScript

<script> 
    // Original strings 
    var str = "TypeScript - String toUpperCase()";  
  
    // use of String toUpperCase() Method 
    var newstr = str.toUpperCase()  
    console.log(newstr); 
</script>

輸出:

TYPESCRIPT - STRING TOUPPERCASE()

相關用法


注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 TypeScript | String toUpperCase() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。