这将根据粘合使用的修剪规则修剪字符向量。它们遵循与 Python Docstrings 类似的规则,具有以下函数。
-
第一行和最后一行的前导和尾随空白将被删除。
-
从第二行开始剥离均匀量的缩进,等于第一行之后所有非空白行的最小缩进。
-
使用
\\
可以跨换行继续行。
例子
glue("
A formatted string
Can have multiple lines
with additional indention preserved
")
#> A formatted string
#> Can have multiple lines
#> with additional indention preserved
glue("
\ntrailing or leading newlines can be added explicitly\n
")
#>
#> trailing or leading newlines can be added explicitly
#>
glue("
A formatted string \\
can also be on a \\
single line
")
#> A formatted string can also be on a single line
相关用法
- R glue glue_col 用颜色构造字符串
- R glue glue_collapse 折叠字符向量
- R glue glue 格式化并插入字符串
- R glue glue_sql 使用 SQL 转义插入字符串
- R glue quoting 引用运算符
- R glue glue_safe 安全地插入字符串
- R SparkR glm用法及代码示例
- R ggplot2 annotation_logticks 注释:记录刻度线
- R axisTicks 计算漂亮的轴刻度
- R googledrive drive_cp 复制云端硬盘文件
- R legend 将图例添加到绘图中
- R googledrive drive_mime_type 查找 MIME 类型
- R ggplot2 vars 引用分面变量
- R grid.curve 在位置之间绘制曲线
- R googledrive drive_reveal 添加新的云端硬盘文件信息列
- R googledrive drive_rm 从云端硬盘删除文件
- R ggplot2 position_stack 将重叠的对象堆叠在一起
- R ggplot2 geom_qq 分位数-分位数图
- R hcl HCL 颜色规格
- R legendGrob 构建一个图例 Grob
- R quartzFonts 石英字体
- R ggplot2 geom_spoke 由位置、方向和距离参数化的线段
- R googlesheets4 sheet_rename 重命名(工作)表
- R googledrive expose 暴露对象
- R grid.draw 画一个网格
注:本文由纯净天空筛选整理自Jim Hester等大神的英文原创作品 Trim a character vector。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。