質問編集履歴
4
文の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
### 前提・実現したいこと
|
2
2
|
|
3
3
|
特定の単語(一単語や慣用語など)をリストに入れておいて、文から削除しようとしています。
|
4
|
+
|
5
|
+
|
4
6
|
|
5
7
|
|
6
8
|
|
@@ -92,6 +94,10 @@
|
|
92
94
|
|
93
95
|
もし`as`という単語を消したいと思った場合です。
|
94
96
|
|
97
|
+
実現したいことは、特定の単語が例えば`as`が`wash`に含まれていても、削除されず、`as`単体の単語の時のみ削除したいということです。
|
98
|
+
|
99
|
+
|
100
|
+
|
95
101
|
```
|
96
102
|
|
97
103
|
text = "The fire snapped and wash as it grew."
|
3
ご回答を受けての質問
test
CHANGED
File without changes
|
test
CHANGED
@@ -88,11 +88,15 @@
|
|
88
88
|
|
89
89
|
### ご回答を受けての質問
|
90
90
|
|
91
|
+
以下のような場合は、ご回答いただいた方法でも解決できないのですがどうすれば良いのでしょうか。
|
92
|
+
|
93
|
+
もし`as`という単語を消したいと思った場合です。
|
94
|
+
|
91
95
|
```
|
92
96
|
|
93
97
|
text = "The fire snapped and wash as it grew."
|
94
98
|
|
95
|
-
text = text.replace('as','
|
99
|
+
text = text.replace('as','').strip()
|
96
100
|
|
97
101
|
text
|
98
102
|
|
@@ -100,7 +104,7 @@
|
|
100
104
|
|
101
105
|
#出力
|
102
106
|
|
103
|
-
'The fire snapped and w
|
107
|
+
'The fire snapped and wh it grew.'
|
104
108
|
|
105
109
|
````
|
106
110
|
|
2
ご回答を受けての質問の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -86,6 +86,28 @@
|
|
86
86
|
|
87
87
|
|
88
88
|
|
89
|
+
### ご回答を受けての質問
|
90
|
+
|
91
|
+
```
|
92
|
+
|
93
|
+
text = "The fire snapped and wash as it grew."
|
94
|
+
|
95
|
+
text = text.replace('as',',').strip()
|
96
|
+
|
97
|
+
text
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
#出力
|
102
|
+
|
103
|
+
'The fire snapped and w,h , it grew.'
|
104
|
+
|
105
|
+
````
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
89
111
|
### 補足情報(FW/ツールのバージョンなど)
|
90
112
|
|
91
113
|
|
1
試したことの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -66,6 +66,24 @@
|
|
66
66
|
|
67
67
|
replace()だと''で空白を埋めるため、stripにしました。
|
68
68
|
|
69
|
+
以下のように空白で置換されてしまうということです。
|
70
|
+
|
71
|
+
```
|
72
|
+
|
73
|
+
text = 'there is a house'
|
74
|
+
|
75
|
+
text = text.replace('there is', '')
|
76
|
+
|
77
|
+
text
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
#出力
|
82
|
+
|
83
|
+
' a house exist'
|
84
|
+
|
85
|
+
```
|
86
|
+
|
69
87
|
|
70
88
|
|
71
89
|
### 補足情報(FW/ツールのバージョンなど)
|