Here is the java properties content
xxx_error_tx1 = This is xxxx. Johe say:
xxx_error_MapCode = xxx_error_tx1, test this function,Failed,\
Default, Current,\
App_Error_tx1
I need to extract string ID and string content, I can extract line1 content correctly, but the second line content extract only the first string xxx_error_tx1, test this function,Failed,\
. The rest of string cannot extract.
The regex string is (?<ID>.+?)=(?<Translation>.+?)$
, I know this regex have some problem, but I've tried to modify to correct pattern but maybe I am newbie, the result still cannot meet my request.
Any help would be appreciated.