我想使用正则表达式从字符串中检索子字符串。
仅供参考:这些字符串值是邮件中的主题
String1 = "Acceptance :DT_Ext_0062-12_012ed2 [Describe]"
string2 = "Acceptance : DT_Ext_0062-12_012 (ed.2) , Describe"
string3 = "Acceptance of : DT_Ext_0062-12_012 (ed.2) , Describe to me"
子串:
sub1 = Acceptance <Mail Type : like Reject or Accept>
sub2 = DT_Ext_0062-12_012 <ID : unique identifier>
sub3 = ed2 <Edition of mail, like : ed1, ed2, ed3 ...so on>
sub4 = Describe <Description of the mail>
我如何为上述两个字符串编写正则表达式(单独或一个正则表达式)以获得相同的输出。
我认为匹配组可用于检索数据。但我对正则表达式很陌生。