midoziad wrote:Unluckily it didn't work for me properly.I think because in some sentences there are words after the ")" last parenthesis.
In that case (if you have text after the closing paren), try the following:
Turn regex on
Search: ^(.+?)\((.+?)\-(.+?)\-(.+?)\-(.+?)\)(.+)$
Replace: \1is ......\na. \2\nb. \3\nc. \4\nd. \5\n\6
Note that you can put this extra text (i.e. \6) anywhere you want. For example,
Replace: \1\6 is ......\na. \2\nb. \3\nc. \4\nd. \5
midoziad wrote:Anyway I'd like to seek your help with a bit easier format:
Try this:
Turn regex on
Search: ^(\d+)\- (.+?) *?\.+ *?(.+)\na\) (.+?)[\t ]+b\) (.+?)[\t ]+c\) (.+?)[\t ]+d\) (.+?)$
Replace: \1. \2 _____ \3\na. \4\nb. \5\nc. \6\nd. \7
NOTE: I have not tested it so there might be slight issues to debug.
Also I assume that choices are always and only a, b, c, d. If not let me know and I'll adjust the regex.