删除 SSRS 2005 中第一个空格后的所有字符
在 SSRS 报告文本框中,我有这个 =Fields!FullName.Value
它显示客户的全名(名字和姓氏)。我想做的就是只显示他们的名字。我基本上想删除第一个空格之后的每个字符,
例如,如果返回的值是 Tom Ndovu,我想 Dispaly Tom。
如果是 Bill M Chark,我只想显示 Bill。
in an SSRS report textbox, i have this =Fields!FullName.Value
which displays a customers Full name (FirstName and LastName). What i want to do is to only display their FirstName. I basically want to to remove every character that comes after the first white space
E.G if the value returned is Tom Ndovu, i want to Dispaly Tom.
if its Bill M Chark, i want to only display Bill.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该指令获取从开始到第一次出现字符“”(空格)的字符串
如果空格并不总是存在,您应该使用类似这样的方法检查从 Instr 返回的值
This instruction get the string from the start to the first occurence the character " " (space)
If the white space is not always present you should check the value returned from Instr using something like this