gpt4 book ai didi

c++ - 使用 C++ 字符串函数自动替换 s​​printf 函数

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:55:37 25 4
gpt4 key购买 nike

我们有大量使用 sprintf 和 cstrings 构造文件名的“演示”代码。我想用 C++ 字符串替换它以允许非常长的文件名,因为它提供了更清晰的语法。

所以本质上我们需要像这样转换 block

ofstream some_file;
char filename[100];
sprintf(filename,"%s/soln%i.dat",a.c_str(), b);
some_file.open(filename);

变成类似的东西

ofstream some_file((a + "soln" + to_string(b) + ".dat").c_str());

然而,因为它用在很多地方,所以我想使用某种自动转换(即 sed 表达式、emacs 函数/宏、visual studio?等)。困难(我可以看到)是:

  1. sprintf 语句的内容可以是任何内容。 (所以我们需要解析 sprintf 语句?)

  2. some_file 和 filename 可以在任何地方声明,可以命名为任何东西,并且经常重复用于输出到多个文件。 (所以我们需要解析 C++?)

这可能/可行吗?

为了加分,我们是否可以避免在字符串上调用 .c_str()(不更改 ofstream 构造函数)?

最佳答案

这里有一些更简单的东西,没有 Yassnippet:

(defun sprintf-to-ofstream (file)
(interactive "sFile to print to: ")
(back-to-indentation)
(let* ((start (point))
arglist
sprintf-args
ofstream-args
(end
(save-excursion
(move-end-of-line 1)
(point)))
(line (buffer-substring-no-properties start end)))
(unless (string= (substring line 0 7) "sprintf")
(error "No `sprintf' at this line"))
(setq arglist
(split-string
(substring line (1+ (position ?\( line))
(position ?\) line :from-end t))
"\\s-*,\\s-*")
sprintf-args
(split-string (substring (cadr arglist) 1 -1)
"%[^[:alpha:]%#]*[[:alpha:]%#]")
ofstream-args
(with-output-to-string
(princ (concat "\"" (car sprintf-args) "\""))
(setq sprintf-args (cdr sprintf-args))
(dotimes (i (length sprintf-args))
(princ " + ")
(when (< (+ i 2) (length arglist))
(princ (nth (+ i 2) arglist))
(princ " + "))
(princ (concat "\"" (nth i sprintf-args) "\"")))))
(kill-region start end)
(insert (concat "ofstream " file "((" ofstream-args ").c_str());" ))))

您可以将它绑定(bind)到您喜欢的任何键并像这样使用:

  • 将点移动到包含要替换的 sprintf 的行,例如执行 M-%sprintf,然后调用此函数.它会提示你给它你想要打印消息的文件的名称(可能我可以让它更复杂,并向上搜索声明 ofstream 的地方,但如果你说它可能已经声明在随意的地方,这听起来像是白​​费力气)。
  • RET,此后函数会将行更改为如下所示:
ofstream foo(("" + a.c_str() + "/soln" + b + ".dat").c_str());

给出你原来的例子。显然,如果您认为在参数周围添加 to_string() 更有可能是这种情况,那么这很容易做到,只要付出更多的努力,也很容易避免连接空字符串, 但有时它可能会改变 + 运算符的效果/解释,所以我决定保持这样。今天晚些时候,我将尝试将它变成一个 yassnippet 脚本,这样就可以交互地跳转到被替换字符串中的不确定位置,并且也有一些预定义的替换。

关于c++ - 使用 C++ 字符串函数自动替换 s​​printf 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13123972/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com