最初が「summary」で、最後が「_author以外」の場合だけ「isMatch = true」としたいのですが、「reg」をどうしたらいいでしょうか?
JavaScript
1var reg = /\Asummary_[a-z][^_author]*\z/ 2 3var name = 'summary_post'; 4var isMatch = reg.test(name); 5console.log('summary_postの結果↓'); 6console.log(isMatch); 7 8var name = 'summary_post_author'; 9var isMatch = reg.test(name); 10console.log('summary_post_authorの結果↓'); 11console.log(isMatch);
「isMatch = true」としたいのは下記
summary_post, summary_meta
「isMatch = false」としたいのは下記
summary_post_author, summary_meta_author
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/05 16:35