Files
DDCZ/scripts/testLastLines.js
KQL ab50931347 初始化多多畅职企业内推平台项目
功能特性:
- 3D地球动画与中国地图可视化
- 省份/城市/企业搜索功能
- 308家企业数据展示
- 响应式设计(PC端和移动端)
- 企业详情页面与业务板块展示
- 官网新闻轮播图

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-22 19:38:14 +08:00

31 lines
1.1 KiB
JavaScript

const fs = require('fs');
// 读取最后10行
const content = fs.readFileSync('../公司介绍.csv', 'utf-8');
const lines = content.split('\n');
console.log('CSV文件总行数:', lines.length);
console.log('\n最后10行:');
lines.slice(-11, -1).forEach((line, index) => {
const lineNum = lines.length - 11 + index;
console.log(`${lineNum}行 (前100字符): ${line.substring(0, 100)}...`);
});
// 查找江苏恒瑞医药
const hengruiIndex = lines.findIndex(line => line.includes('江苏恒瑞医药'));
if (hengruiIndex >= 0) {
console.log('\n✅ 找到江苏恒瑞医药,在第', hengruiIndex + 1, '行');
console.log('内容:', lines[hengruiIndex].substring(0, 150));
} else {
console.log('\n❌ 未找到江苏恒瑞医药');
}
// 查找宿迁阿特斯
const atesIndex = lines.findIndex(line => line.includes('宿迁阿特斯'));
if (atesIndex >= 0) {
console.log('\n✅ 找到宿迁阿特斯,在第', atesIndex + 1, '行');
console.log('内容:', lines[atesIndex].substring(0, 150));
} else {
console.log('\n❌ 未找到宿迁阿特斯');
}