我需要标记作者名称格式“ Last,F”作为一个标记。 Spark标记器给我的数组长度为三['last,,f']。
我尝试用整个字段周围的引号对输入数据进行正则表达式。我研究了如何将其转换为长度为1的数组,却一无所获。
var xl = require('excel4node');
var wb = new xl.Workbook();
// sends Excel file to web client requesting the / route
// server will respond with 500 error if excel workbook cannot be generated
var express = require('express');
var app = express();
app.get('/', function(req, res) {
wb.write('ExcelFile.xlsx', res);
});
app.listen(3000, function() {
console.log('Example app listening on port 3000!');
});
预期结果: ['last,f']->长度为1的数组[String]
实际结果: ['last,,f']->长度为3的数组[String]