Forum: MemoQ support
Topic: Regex tagger for %d & %s
Poster: Shouguang Cao
Post title: Not sure of the question
I know it's sometimes hard to ask a technical question.
If you want to match % and then follow with one lower case letter, you could do
%[a-z]
or
%\w for any letter.
Topic: Regex tagger for %d & %s
Poster: Shouguang Cao
Post title: Not sure of the question
I know it's sometimes hard to ask a technical question.
If you want to match % and then follow with one lower case letter, you could do
%[a-z]
or
%\w for any letter.