這將根據粘合使用的修剪規則修剪字符向量。它們遵循與 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。