T SQL如何通过删除最后一个分隔符之后的所有部分来修改字符串
我正在努力寻找 SQL Server 2008 的正确函数来纠正任何类似以下的字符串: \\myserver\mydir1\dir2\test.txt
或 \\myserver2\dir1\dir2\ dir3\test.txt
。
最后,结果应如下所示: \\myserver\mydir1\dir2
或 \\myserver2\dir1\dir2\dir3
,因此在最后一个 " 之后\"
,应该删除子字符串。
知道该怎么做吗?
I'm struggling to find the right functions with SQL Server 2008 to rectify any strings coming like: \\myserver\mydir1\dir2\test.txt
or \\myserver2\dir1\dir2\dir3\test.txt
.
At the end, the result should appear like: \\myserver\mydir1\dir2
or \\myserver2\dir1\dir2\dir3
, So after the last "\"
, the substring should be removed.
Any idea how to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
逻辑:
\\myserver\mydir1\dir2\test.txt
txt.tset\2rid\1ridym\revresym\
\
2rid\1ridym\revresym\
\\myserver\mydir1\dir2
您不需要知道SUBSTRING 的字符串的 LEN 所以只需使用 8000
编辑,在关于使用 8000 的评论之后
Logic:
\\myserver\mydir1\dir2\test.txt
txt.tset\2rid\1ridym\revresym\
\
2rid\1ridym\revresym\
\\myserver\mydir1\dir2
You don't need to know the LEN of the string for the SUBSTRING so just use 8000
Edit, after comment about using 8000
尝试这样的事情......
希望有帮助,
杰弗里·凯文·普里
Try something like this...
Hope that helps,
Jeffrey Kevin Pry