R で str_trim を使用する方法 (例あり)
R のstringrパッケージのstr_trim()関数を使用して、文字列から空白を削除できます。
この関数は次の構文を使用します。
str_trim(文字列, サイド = c(“両方”, “左”, “右”))
金:
- string:文字ベクトル
- パターン:スペースを削除する側
次の例は、この関数を実際に使用する方法を示しています。
例 1: 左側のスペースをカットする
次のコードは、 str_trim()関数を使用して文字列の左側からスペースを削除する方法を示しています。
library (stringr)
#create string
my_string <- “Hey there everyone.”
#view string
my_string
[1] “Hey there everyone.”
#create new string with white space removed from left
new_string <- str_trim(my_string, side=" left ")
#view new string
new_string
[1] “Hey there everyone.”
文字列の左側にあるスペースはすべて削除されていることに注意してください。
例 2: 右側のスペースをトリムする
次のコードは、 str_trim()関数を使用して文字列の右側からスペースを削除する方法を示しています。
library (stringr)
#create string
my_string <- “Hey there everyone.”
#view string
my_string
[1] “Hey there everyone.”
#create new string with white space removed from right
new_string <- str_trim(my_string, side=" right ")
#view new string
new_string
[1] “Hey there everyone.”
文字列の右側のスペースはすべて削除されていることに注意してください。
例 3: 両側のスペースをカットする
次のコードは、 str_trim()関数を使用して文字列の両側からスペースを削除する方法を示しています。
library (stringr)
#create string
my_string <- “Hey there everyone.”
#view string
my_string
[1] “Hey there everyone.”
#create new string with white space removed from both sides
new_string <- str_trim(my_string, side=" both ")
#view new string
new_string
[1] “Hey there everyone.”
文字列の両側のスペースがすべて削除されていることに注意してください。
追加リソース
次のチュートリアルでは、R で他の一般的なタスクを実行する方法について説明します。
R で str_replace を使用する方法
R で str_split を使用する方法
R で str_detect を使用する方法
R で str_count を使用する方法