如何在 TCL 中去除字符串中的空格?

发布于 2024-10-11 17:49:25 字数 35 浏览 3 评论 0原文

我需要从 TCL 中的字符串中去除前导和尾随空格。如何?

I need to strip leading and trailing whitespace from a string in TCL. How?

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

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

发布评论

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

评论(2

蝶舞 2024-10-18 17:49:26

试试这个 -

      字符串修剪 字符串 ?字符?

返回一个等于string的值,除了删除chars给定集合中的任何前导或尾随字符。如果未指定chars,则删除空格(空格、制表符、换行符和回车符)。

原始来源:- http://wiki.tcl.tk/10174

Try this -

      string trim string ?chars?

Returns a value equal to string except that any leading or trailing characters from the set given by chars are removed. If chars is not specified then white space is removed (spaces, tabs, newlines, and carriage returns).

Original Source :- http://wiki.tcl.tk/10174

可可 2024-10-18 17:49:26

试试这个。这将删除所有带空格的

[string map {" " ""} $a];

a 是你的字符串

try this. this will remove all the withe spaces

[string map {" " ""} $a];

a is your string

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文