JavaScript正則表達式進階指南

本文用JavaScript的exec方法來測試正則表達式。web 例如,正則表達式/F.g/會匹配「以F開頭,以g結尾的字符串」,所以能夠匹配"Hello, Fundebug!"中的Fundebug*,exec方法會返回一個數組,其第一個元素爲所匹配的子字符串。正則表達式 /F.*g/.exec(「Hello, Fundebug!」)[0] // ‘Fundebug’數組 非貪婪匹配less 默認
相關文章
相關標籤/搜索