Microsoft Access 删除部分字符串

发布于 2024-12-01 13:21:50 字数 199 浏览 0 评论 0原文

我正在使用转换为文本文件的 html 文件作为源来构建查询。

我需要删除某些字段的第一部分和其他字段的最后部分,例如:

class="nohover">Product
Price</a></h3>

html 代码的长度可能有所不同。任何想法。

谢谢你!

I'm building a query using a html file converted to a text file as the source.

I need to remove the first part of some fields, and the last part of others, for example:

class="nohover">Product
Price</a></h3>

The html code can vary in length. Any ideas.

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

殊姿 2024-12-08 13:21:50

您可以使用函数 Left、Right、Mid、InStr,在某些情况下还可以使用 Replace。

s = "class=""nohover"">Product Price</a></h3>"
s = Mid(a, InStr(a, ">") + 1)
s = Left(a, InStr(a, "<") - 1)

You can use the functions Left, Right, Mid, InStr and, in some cases, Replace.

s = "class=""nohover"">Product Price</a></h3>"
s = Mid(a, InStr(a, ">") + 1)
s = Left(a, InStr(a, "<") - 1)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文