1 Star 0 Fork 0

leegean/pixez-flutter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
to_lower.dart 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
perol 提交于 2021-03-09 12:15 . say goodbye to intl_util
/*
* Copyright (C) 2020. by perol_notsf, All rights reserved
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
import 'dart:convert';
import 'dart:io';
//给key转小写的工具
void main(args) {
String fileName = 'en_US.arb';
var file = File('./${fileName}');
Map<String, dynamic> scores = jsonDecode(file.readAsStringSync());
var keys = scores.keys.toList();
for (var i = 0; i < keys.length; i++) {
var key = keys[i];
var resultKey = key.toLowerCase();
if (resultKey == key) {
continue;
}
scores[resultKey] = scores[key];
scores.remove(key);
}
String out = "{\n";
var outFile = File('./${fileName}.json');
if (!outFile.existsSync()) {
outFile.createSync();
}
for (var j in scores.keys.toList()..sort()) {
out += "\"$j\":\"${scores[j]}\",\n";
}
out += "}";
outFile.writeAsStringSync(out);
print(scores.keys.length);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/leegean/pixez-flutter.git
git@gitee.com:leegean/pixez-flutter.git
leegean
pixez-flutter
pixez-flutter
master

搜索帮助