R の文字列から引用符を削除する方法 (3 つの方法)
R の文字列から引用符を削除するには、次の 3 つの一般的な方法があります。
方法 1: print() を使用する
print(some_strings, quote= FALSE )
方法 2: noquote() を使用する
noquote(some_strings)
方法 3: cat() を使用する
cat(some_strings)
次の例は、次の文字列ベクトルで各メソッドを使用する方法を示しています。
#define vector of strings
some_strings <- c("hey", "these", "are", "some", "strings")
#view vector
some_strings
[1] “hey” “these” “are” “some” “strings”
デフォルトでは、文字列は引用符付きで出力されることに注意してください。
例 1: print() を使用して文字列から引用符を削除する
次のコードは、 print()関数を使用して引用符を削除した文字列を出力する方法を示しています。
#print vector of strings without quotes print(some_strings, quote= FALSE ) [1] hey these are some strings
例 2: noquote() を使用して文字列から引用符を削除する
次のコードは、 noquote()関数を使用して引用符を削除した文字列を出力する方法を示しています。
#print vector of strings without quotes noquote(some_strings ) [1] hey these are some strings
例 3: Cat() を使用して文字列から引用符を削除する
次のコードは、 cat()関数を使用して引用符を削除した文字列を出力する方法を示しています。
#print vector of strings without quotes cat(some_strings ) hey these are some strings
\n引数を使用して、各文字列を引用符なしで新しい行に出力することもできます。
#print vector of strings without quotes each on a new line cat(paste(some_strings, " \n ")) hey thesis are some thongs
ベクトル内の各文字列は新しい行に出力されることに注意してください。
追加リソース
次のチュートリアルでは、R で他の一般的なタスクを実行する方法について説明します。