插件窝 干货文章 js中如何字符转换

js中如何字符转换

strong 字符 字符串 li 98    来源:    2024-10-19
javascript 中的字符转换方法有:字符串方法(touppercase、tolowercase、charat、fromcharcode)、正则表达式(replace)、字符编码(encodeuri、decodeuri、encodeuricomponent、decodeuricomponent)。

JavaScript 中的字符转换

在 JavaScript 中,有几种方法可以进行字符转换。这些方法包括:

字符串方法

  • toUpperCase():将字符串中的所有字符转换为大写。
  • toLowerCase():将字符串中的所有字符转换为小写。
  • charAt(index):返回指定索引处的字符。
  • fromCharCode(code):根据指定的 Unicode 码点返回字符。

正则表达式

  • replace(regex, replacement):使用正则表达式匹配并替换字符串中的字符。

字符编码

  • encodeURI():对 URI 组件进行编码。
  • decodeURI():对 URI 组件进行解码。
  • encodeURIComponent():对 URI 组件的各个部分进行编码。
  • decodeURIComponent():对 URI 组件的各个部分进行解码。

示例

// 使用字符串方法将字符串转换为大写
let str = "hello world";
let upperStr = str.toUpperCase(); // HELLO WORLD

// 使用正则表达式将字符串中的数字替换为 "*"
let numStr = "12345";
let replacedStr = numStr.replace(/[0-9]/g, "*"); // *****

// 使用字符编码对 URI 组件进行编码
let uri = "http://example.com/?q=search";
let encodedUri = encodeURI(uri); // http://example.com/%3Fq%3Dsearch