Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 % 在字符串中保留符号sprintf()?
sprintf()
目前,我正在使用sprintf('%.2f%s', runif(1, 0, 100), '%'),但应该有另一种方式。
sprintf('%.2f%s', runif(1, 0, 100), '%')
sprintf("%.2f%%", runif(1, 0, 100))
用于%%“转义”%。这在帮助文件中有说明
%%
?sprintf