回答編集履歴

2

ソース修正

2021/09/07 02:38

投稿

退会済みユーザー
test CHANGED
@@ -4,8 +4,12 @@
4
4
 
5
5
  - text2 = re.sub(r'\s'+delete, ' ', text)
6
6
 
7
- + text2 = re.sub(rf'(?<=\s)({delete})', ' ', text)
7
+ + text2 = re.sub(rf'(?<=\s)({delete})', '', text)
8
8
 
9
9
  ```
10
10
 
11
11
  でいけるんやないかな。[一応確認してみたで。](https://replit.com/@suwmn50799/358128Si-Wei)
12
+
13
+
14
+
15
+ 補足: (?<=\s)で直前の空白文字をマッチさせれば、置換後の文字列は空文字列でえかった。修正しときましたわ。

1

ソース修正

2021/09/07 02:38

投稿

退会済みユーザー
test CHANGED
@@ -8,4 +8,4 @@
8
8
 
9
9
  ```
10
10
 
11
- でいけるんやないかな。
11
+ でいけるんやないかな。[一応確認してみたで。](https://replit.com/@suwmn50799/358128Si-Wei)