Translation - Μετάφραση

Resources, Technical Assistance and Technology News => Translator resources => Tips on Using Computers => Topic started by: spiros on 18 May, 2020, 11:17:27

Title: Regex: Match Hebrew characters in Notepad++
Post by: spiros on 18 May, 2020, 11:17:27
Regex: Match Hebrew character in Notepad++
Code: [Select]
[\x{0591}-\x{05BD}\x{05BF}-\x{05C2}\x{05C4}-\x{05C7}]
Or

Code: [Select]
[\x{0590}-\x{05FF}\x{FB1D}-\x{FB4F}]
Find/Replace Hebrew words with wiki links:

Code: [Select]
(\b[\x{0590}-\x{05FF}\x{FB1D}-\x{FB4F}]+\b)
[[\1]]