當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
tolowercase_JavaScript中的String toLowerCase()方法与示例
生活随笔
收集整理的這篇文章主要介紹了
tolowercase_JavaScript中的String toLowerCase()方法与示例
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
tolowercase
字符串toLowerCase()方法 (String toLowerCase() Method)
toLowerCase() Method is a string method in JavaScript, it is used to converts all alphabets in lowercase and returns the new string with lowercase alphabets.
toLowerCase()方法是JavaScript中的字符串方法,用于轉換所有小寫字母并返回帶有小寫字母的新字符串。
Syntax:
句法:
new_string = str.toLowerCase();Here,
這里,
str is the main string to be converted.
str是要轉換的主字符串。
new_string is the returned new string with all alphabets in lowercase.
new_string是返回的新字符串,所有字母均為小寫。
Examples:
例子:
Input: "Hello World!"Output: "hello world!"Input: "[email?protected]"Output: "[email?protected]"Code:
碼:
<html> <head> <title>JavaScipt Example</title> </head><body> <script> var main_str = "Hello World!";var new_str = main_str.toLowerCase();document.write("main_str = " + main_str + "<br>");document.write("new_str = " + new_str + "<br>");main_str = "[email?protected]";new_str = main_str.toLowerCase();document.write("main_str = " + main_str + "<br>");document.write("new_str = " + new_str + "<br>"); </script> </body> </html>Output
輸出量
main_str = Hello World! new_str = hello world! main_str = [email?protected] new_str = [email?protected]翻譯自: https://www.includehelp.com/code-snippets/string-toLowerCase-method-with-example-in-javascript.aspx
tolowercase
總結
以上是生活随笔為你收集整理的tolowercase_JavaScript中的String toLowerCase()方法与示例的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 诡探剧情介绍
- 下一篇: 线性方程组 python_线性方程组的表