如何截取 m4 中字符串的最后一个字符

发布于 2024-11-14 07:12:11 字数 175 浏览 1 评论 0原文

我正在尝试创建一个宏来删除 m4 中字符串的最后一个字符,我尝试执行以下操作:

define(`delete_last',substr(`$1',`0',eval(``len($1)'-1')))dnl

这是最接近工作的宏,但我仍然无法正确实现它。我现在需要一些帮助。

I am trying to create a macro for deleting the last char of a string in m4, I have trying to do something like:

define(`delete_last',substr(`$1',`0',eval(``len($1)'-1')))dnl

This is the one that has been closest to work, but still I cannot achieve it properly. I need some help now.

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

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

发布评论

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

评论(2

感情废物 2024-11-21 07:12:11

不知道这是最好的方法,但它有效:

define(`__count_m1',`eval($1 - $2)')dnl
define(`__del_last3',`substr($1,`0',__count_m1(len($1),3))')dnl

Don't know it this is the optimal way to do it, but it works:

define(`__count_m1',`eval($1 - $2)')dnl
define(`__del_last3',`substr($1,`0',__count_m1(len($1),3))')dnl
稚然 2024-11-21 07:12:11

我最近不得不写这样一个宏,对我有用的是:

define(`CHOMP',`substr($1,0,eval(len($1)-1))')dnl

YMMV。

I recently had to write such a macro, what worked for me was:

define(`CHOMP',`substr($1,0,eval(len($1)-1))')dnl

YMMV.

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