gpt4 book ai didi

c# - 将 HTML 格式的 Excel 导入 DataTable

转载 作者:行者123 更新时间:2023-11-28 03:53:45 26 4
gpt4 key购买 nike

我一直在网上搜索没有答案如何导入由 <table>,<th>,<tr>,<td> 组成的 .xls 文件标记到数据表?

最佳答案

如果 HTML 格式正确,您可以尝试将其加载为 XML。用一个非常简单的例子扩展一下:

        System.Xml.Linq.XDocument html = System.Xml.Linq.XDocument.Load (@"[xls doc]");
//this will pull all the Table Headers.
var q = from th in html.Descendants ("th") select (string)th.Value;

关于c# - 将 HTML 格式的 Excel 导入 DataTable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6029932/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com