Microsoft Access 删除部分字符串
我正在使用转换为文本文件的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用函数 Left、Right、Mid、InStr,在某些情况下还可以使用 Replace。
You can use the functions Left, Right, Mid, InStr and, in some cases, Replace.