I use two Regular Expressions to Match a Text.
var RegExp = /[^\W\d](\w|[-'](?=\w))*/gi;
var RegExpOthers = /[^\W\d]{4,}(\w|[-']{1,2}(?=\w))*/gi;
Currently no Word containing letters like ä, ü, ö...(German alphabet) will be matched.
How can I extend these Expressions?