我需要遍历excel文件列表的前几行并返回某个关键字的位置。
我所拥有的不起作用:
export const stepStageFour = (data,id) => {
console.log("Statge Four")
console.log(data)
return dispatch => {
return client().patch('internal/activation/step-4/'+id+'/',{
headers: {
'enctype': 'multipart/form-data',
"Authorization" : 'JWT Any Token ID',
},data
}).catch( data => console.log(data))
}
}
SkipLocation返回
# SampleFile is a list of 5 excel files
library(readxl)
Header <- lapply(SampleFile, function(x) read_excel(x, n_max = 20))
SkipLocation<-lapply(Header, function(x) grep("Keyword",x))
我知道“关键字”在每个文件的第一列的第11行,因此返回“ SkipLocation”是错误的。