Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
Hello UTS
提交
6ef0ce1b
H
Hello UTS
项目概览
DCloud
/
Hello UTS
通知
1595
Star
27
Fork
9
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
2
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
Hello UTS
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
2
Issue
2
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
6ef0ce1b
编写于
12月 25, 2023
作者:
杜庆泉
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加 String.fromCharCode 测试示例
上级
5e8f2cb3
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
12 addition
and
7 deletion
+12
-7
uni_modules/uts-tests/utssdk/String.uts
uni_modules/uts-tests/utssdk/String.uts
+12
-7
未找到文件。
uni_modules/uts-tests/utssdk/String.uts
浏览文件 @
6ef0ce1b
...
...
@@ -10,14 +10,14 @@ export function testString(): Result {
expect(empty.length).toEqual(0);
// const adlam = "𞤲𞥋𞤣𞤫";
// expect(adlam.length).toEqual(8);
// const formula = "
∀𝑥∈ℝ,𝑥²≥0
";
// const formula = "
��𝑥∈ℝ,𝑥²��
";
// expect(formula.length).toEqual(11);
// 1. web:
最
大长度和js引擎有关,在v8中为 2^29 - 24
// 1. web:
��
大长度和js引擎有关,在v8中为 2^29 - 24
// 超出边界报错: RangeError: Invalid string length
// 2. kotlin:
最大长度
2^31-1
// 2. kotlin:
��大长��
2^31-1
// 超出边界报错: Error: targetMethod error::java.lang.OutOfMemoryError: char[] of length
// 3. swift:
最
大长度和内存有关
// 3. swift:
��
大长度和内存有关
// 超出边界没有返回信息
// const length = Math.pow(2, 29) - 24
// const str = 'x'.repeat(length);
...
...
@@ -68,6 +68,11 @@ export function testString(): Result {
const empty = "";
expect(empty.charCodeAt(0)).toEqual(null);
})
test('fromCharCode', () => {
expect(String.fromCharCode(65, 66, 67)).toEqual("ABC");
expect(String.fromCharCode(0x12014)).toEqual("—");
expect(String.fromCharCode(0xd834, 0xdf06, 0x61, 0xd834, 0xdf07)).toEqual("𝌆a𝌇");
})
test('concat', () => {
let hello = 'Hello, '
expect(hello.concat('Kevin', '. Have a nice day.')).toEqual("Hello, Kevin. Have a nice day.");
...
...
@@ -193,7 +198,7 @@ export function testString(): Result {
const str = 'The quick brown fox jumps over the lazy dog.';
expect(str.slice(31)).toEqual("the lazy dog.");
let str1 = 'The morning is upon us.', // str1 的长
度 length 是 23。
let str1 = 'The morning is upon us.', // str1 的长
��length ��23��
str2 = str1.slice(1, 8),
str3 = str1.slice(4, -2),
str4 = str1.slice(12),
...
...
@@ -245,8 +250,8 @@ export function testString(): Result {
expect(str4.split(re4)).toEqual(["a", " b", " {c, d, e}", " f", " g", " h"]);
})
test('toLowerCase', () => {
const str1 = '中文
简体
zh-CN || zh-Hans';
expect(str1.toLowerCase()).toEqual("中文
简体
zh-cn || zh-hans");
const str1 = '中文
����
zh-CN || zh-Hans';
expect(str1.toLowerCase()).toEqual("中文
����
zh-cn || zh-hans");
const str2 = 'ALPHABET';
expect(str2.toLowerCase()).toEqual("alphabet");
})
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录