Search found 2 matches

by TurnieGC
Wed Mar 05, 2014 2:56 am
Forum: TextAloud 3 Forum
Topic: Regular Expression to match the beginning of a line
Replies: 3
Views: 14461

Re: Regular Expression to match the beginning of a line

Thanks a lot for your help. It's working well, although I encountered another behaviour i didn't expect. I want to suppress a couple of lines starting with a certain qualifier, but skipping the whole line after the qualifier as well. So I tried the following regular expression (?m)^qualifier.*$ It l...
by TurnieGC
Mon Mar 03, 2014 1:14 pm
Forum: TextAloud 3 Forum
Topic: Regular Expression to match the beginning of a line
Replies: 3
Views: 14461

Regular Expression to match the beginning of a line

Right now I'm trying to use the pronounciation dictionary to skip various characters used for markdown formatting. To give you an easy example, the following line marks a chapter # Chapter 1 Now I tried to skip the '#' by using e.g. the following regular expression ^# Most of my regular expressions ...