你好,這是我的字符串不要在正則表達式獲取字符串中的描述內容
/* anything description */ Data1 = value1; Other_Data = Other_Value; /* my other description */ Anything = Any_Answer; /* this is description and must not detect Description_Data = Any_Value; */
現在我想用正則表達式,並得到這樣的
Data1 Other_Data Anything
和
value1 Other_Value Any_Answer
在數組中,但我不想要正則表達式檢測任何內部(描述框)
/* */像
Description_Data = Any_Value;
這是我的正則表達式
\h*(.*?)\h*[=]\h*(.*?)\h*[;]
我的問題是,正則表達式得到即使在說明書和一些按鍵所有的按鍵和值,鍵之前像所有的描述鍵之前得到的一切......我想就這樣
Data1 Other_Data Anything
和
value1 Other_Value Any_Answer
有什麼問題?
鍵和值只包含字母數字和下劃線嗎? –
請分享你的嘗試。 –
用我的正則表達式更新 – MyJustWorking