2
工作了所有輸入我使用在C以下的正則表達式++正則表達式不是在C++
std::regex base_regex("[A-Za-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[A-Za-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[A-Za-z0-9](?:[A-Za-z0-9-]*[A-Za-z0-9])?\\.)+[A-Za-z0-9](?:[A-Za-z0-9-]*[A-Za-z0-9])?");
它拒絕德follwoing輸入
[email protected]
在Java和JS同樣的作品。有人expalin
在我的測試中,僅僅匹配這個測試,regex_match函數返回真值。 –
什麼編譯器/版本? – marcinj
visual studio 2010 – vijin