Hello people,
I have got following string
dim mystring as string ="(1)10002 – Language: ENG-DEU;Reuse: 25;Context Match: 10;Total: 35;Include CM in Reuse: Yes;"
I have made my regex in ultraedit also the regex type is unix.
I want to search for regex below:
Language(.*)\p(.*)\pContext Match(.*)\p(.*)\p(.*)\p
I want to replace with:
Language\1\r\nContext Match\3
Could someone help me with a code that works.
Thank you in advance
I have got following string
dim mystring as string ="(1)10002 – Language: ENG-DEU;Reuse: 25;Context Match: 10;Total: 35;Include CM in Reuse: Yes;"
I have made my regex in ultraedit also the regex type is unix.
I want to search for regex below:
Language(.*)\p(.*)\pContext Match(.*)\p(.*)\p(.*)\p
I want to replace with:
Language\1\r\nContext Match\3
Could someone help me with a code that works.
Thank you in advance