回答編集履歴

2

テキスト修正

2019/09/14 01:52

投稿

jun68ykt
jun68ykt

スコア9058

test CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
 
16
16
 
17
- がよいかと思います。 `\b` は単語の境界([word boundary](https://www.regular-expressions.info/wordboundaries.html))を意味します。
17
+ がよいかと思います。 `\b` は単語の境界(Word Boundaries)を意味します。
18
18
 
19
19
 
20
20
 
@@ -23,6 +23,10 @@
23
23
 
24
24
 
25
25
  - **動作確認用サンプル:** [https://codepen.io/jun68ykt/pen/GRKGMvQ?editors=0001](https://codepen.io/jun68ykt/pen/GRKGMvQ?editors=0001)
26
+
27
+        
28
+
29
+ - **参考:** regular-expressions.info: [Word Boundaries](https://www.regular-expressions.info/wordboundaries.html)
26
30
 
27
31
 
28
32
 

1

テキスト修正

2019/09/14 01:52

投稿

jun68ykt
jun68ykt

スコア9058

test CHANGED
@@ -27,3 +27,21 @@
27
27
 
28
28
 
29
29
  以上、参考になれば幸いです。
30
+
31
+
32
+
33
+ ### 追記
34
+
35
+
36
+
37
+ te2jiさんからのコメントにお応えするのと、 `an` にも対応させると以下になります。
38
+
39
+
40
+
41
+ ```javascript
42
+
43
+ /\ban?\b/gi
44
+
45
+ ```
46
+
47
+ - **動作確認用サンプル:** [https://codepen.io/jun68ykt/pen/gOYKGvK?editors=0011](https://codepen.io/jun68ykt/pen/gOYKGvK?editors=0011)