View Single Post
Old 05-17-2018, 12:03 PM   #9
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 28,735
Karma: 206739468
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by 1v4n0 View Post
Thank you. I just tried it and it almost works: it unfortunately matches accented letters as if they were word boundaries:
Code:
\ba\b
matches àa, aè, etc.
Turn on the Unicode Character Properties for \B\b \S\s \W\w with the (*UCP) modifier.

Instead of merely:
Code:
\ba\b
Use:
Code:
(*UCP)\ba\b
Then unicode characters shouldn't be detected as word boundaries.

Last edited by DiapDealer; 05-17-2018 at 12:06 PM.
DiapDealer is online now   Reply With Quote