質問編集履歴
1
試したことを追加しましあ
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
replaceで被った文字を含めず置換したい
|
1
|
+
replaceで[a-z]に被った文字を含めず置換したい
|
test
CHANGED
@@ -20,6 +20,12 @@
|
|
20
20
|
|
21
21
|
textarea.value = text;
|
22
22
|
|
23
|
+
|
24
|
+
|
25
|
+
// 否定(?!http)を入れてもうまく行きませんでした
|
26
|
+
|
27
|
+
text = text.replace(/https?://[a-z]+.com/[a-z]+(?!https?)/g , "あいうえお");
|
28
|
+
|
23
29
|
```
|
24
30
|
|
25
31
|
下記のような結果になります。
|