-5
字符串:_col_somesSring123___textbox正則表達式的開頭_col_somesSring123___textbox
始於:_col_
結尾爲:___textbox
我需要提取somesSring123
字符串:_col_somesSring123___textbox正則表達式的開頭_col_somesSring123___textbox
始於:_col_
結尾爲:___textbox
我需要提取somesSring123
在蟒蛇:
re.search(r‘_col_(.*)__textbox’, text);
什麼語言使用? –
根據不同的語言,你可以只需要一個子字符串,如果前綴和後綴總是相同 – geisterfurz007
Java 8語言 – user2173372