如何在 gdb/ada 中进行字符串连接

发布于 2024-07-14 10:47:50 字数 161 浏览 6 评论 0原文

根据手册,gdb 中字符串连接未实现。 但是我需要它,那么有没有办法实现这一点,也许使用数组函数?

According to the manual, string concatenation isn't implemented in gdb. I need it however, so is there a way to achieve this, perhaps using array functions?

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

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

发布评论

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

评论(2

陪你搞怪i 2024-07-21 10:47:50

我没有 gdb 的副本来尝试此操作,但也许文档的 Ada 部分后面的这一行会对您有所帮助?

而不是使用串联和
要介绍的象征性人物名称
特殊字符转化为字符串,一
可以使用特殊的支架代替
符号,也用于打印
字符串。 的字符序列
字符串中的 ["XX"] 形式或
字符文字表示(单个)
数字编码为 XX 的字符
以十六进制表示。 的顺序为
字符 ["""] 也表示
字符串中的单引号。 为了
例如,“一行。[“0a”]下一个
行。[“0a”]“

包含 ASCII 换行符
(Ada.Characters.Latin_1.LF) 在每个之后
期间。

I don't have a copy of gdb around to try this on, but perhaps this line from later in the Ada section of the document will help you?

Rather than use catenation and
symbolic character names to introduce
special characters into strings, one
may instead use a special bracket
notation, which is also used to print
strings. A sequence of characters of
the form ["XX"] within a string or
character literal denotes the (single)
character whose numeric encoding is XX
in hexadecimal. The sequence of
characters ["""] also denotes a
single quotation mark in strings. For
example, "One line.["0a"]Next
line.["0a"]"

contains an ASCII newline character
(Ada.Characters.Latin_1.LF) after each
period.

屌丝范 2024-07-21 10:47:50

对于 Objective-C:

[@"asd" stringByAppendingString:@"zxc"]


[@"ID: " stringByAppendingString:(NSString*) [aTaskDict valueForKey:@"ID"]]

For Objective-C:

[@"asd" stringByAppendingString:@"zxc"]


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