From 1d843a3313fb292d88bc914e2e5bab303f8b843f Mon Sep 17 00:00:00 2001 From: djhbs <62237676+djhbs@users.noreply.github.com> Date: Sun, 12 Nov 2023 08:42:40 +0800 Subject: [PATCH] Update 03-basic-manipulations.Rmd --- 03-basic-manipulations.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03-basic-manipulations.Rmd b/03-basic-manipulations.Rmd index 6b3dc40..d74ea91 100644 --- a/03-basic-manipulations.Rmd +++ b/03-basic-manipulations.Rmd @@ -185,7 +185,7 @@ chartr("ai", "X", "This is a bad example") Here's a more interesting example with `old = "aei"` and `new = "\#!?"`. This implies that any `'a'` in `'x'` will be replaced by `'\#'`, any `'e'` in -`'x'` will be replaced by `'?'`, and any `'i'` in `'x'` will be replaced by +`'x'` will be replaced by `'!'`, and any `'i'` in `'x'` will be replaced by `'?'`: ```{r chartr_ex3}