英文:
Escape Variables with Printf
问题
如果我想要做以下操作:
fmt.Printf("Escape this -> %v... Do not escape this -> %v", "Unescaped")
我该如何转义第一个 %v
的出现?
\%v
似乎不起作用。有什么想法吗?
英文:
If I wanted to do the following:
fmt.Printf("Escape this -> %v... Do not escape this -> %v", "Unescaped")
How could I escape the first occurrence of %v
?
\%v
doesn't seem to work. Any ideas?
答案1
得分: 139
你可以使用 %% 来表示百分号。
%% 表示一个字面上的百分号,不会消耗任何值
英文:
You can use %% for literal %
%% a literal percent sign; consumes no value
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论