回答編集履歴
2
テキスト修正
test
CHANGED
@@ -32,7 +32,7 @@
|
|
32
32
|
|
33
33
|
|
34
34
|
|
35
|
-
- **動作確認用CodePen:** [https://codepen.io/jun68ykt/pen/
|
35
|
+
- **動作確認用CodePen:** [https://codepen.io/jun68ykt/pen/GRJWedp?editors=0010](https://codepen.io/jun68ykt/pen/GRJWedp?editors=0010)
|
36
36
|
|
37
37
|
|
38
38
|
|
1
テキスト修正
test
CHANGED
@@ -14,7 +14,7 @@
|
|
14
14
|
|
15
15
|
```
|
16
16
|
|
17
|
-
に含まれる `[\x21-\x7e]+` の部分を `([\x21-\x7e]
|
17
|
+
に含まれる `[\x21-\x7e]+` の部分を `((?!https?:)[\x21-\x7e])+` にして、以下に修正するといかがでしょうか?
|
18
18
|
|
19
19
|
|
20
20
|
|
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
```javascript
|
24
24
|
|
25
|
-
const reg = /(https?:/((?!\Whttps?:)(/([\x21-\x7e]
|
25
|
+
const reg = /(https?:/((?!\Whttps?:)(/((?!https?:)[\x21-\x7e])+))+/?)/g;
|
26
26
|
|
27
27
|
```
|
28
28
|
|
@@ -32,7 +32,7 @@
|
|
32
32
|
|
33
33
|
|
34
34
|
|
35
|
-
- **動作確認用CodePen:** [https://codepen.io/jun68ykt/pen/
|
35
|
+
- **動作確認用CodePen:** [https://codepen.io/jun68ykt/pen/PoqpWJN?editors=0010](https://codepen.io/jun68ykt/pen/PoqpWJN?editors=0010)
|
36
36
|
|
37
37
|
|
38
38
|
|