View Single Post
Old 11-30-2017, 12:46 PM   #11
Nicolas F
Groupie
Nicolas F once ate a cherry pie in a record 7 seconds.Nicolas F once ate a cherry pie in a record 7 seconds.Nicolas F once ate a cherry pie in a record 7 seconds.Nicolas F once ate a cherry pie in a record 7 seconds.Nicolas F once ate a cherry pie in a record 7 seconds.Nicolas F once ate a cherry pie in a record 7 seconds.Nicolas F once ate a cherry pie in a record 7 seconds.Nicolas F once ate a cherry pie in a record 7 seconds.Nicolas F once ate a cherry pie in a record 7 seconds.Nicolas F once ate a cherry pie in a record 7 seconds.Nicolas F once ate a cherry pie in a record 7 seconds.
 
Posts: 161
Karma: 1842
Join Date: Jan 2016
Device: Kobo Glo HD
Quote:
Originally Posted by reinsley View Post
([\w])([:]) ([\w]) is a killing search too.
To run in #2 pass after ([a-zA-Z])([:]) ([a-zA-Z])

Great.

Your last sentence is not clear for me.
You could also use the search
Code:
(>[^<>]*[^\s]):
and replace with
\1 :
This will find every instance where ":" follows a character that is not a space. This way you also match ":" that follows a parenthesis.

Vous pouvez utiliser l'expression ci-dessus. De cette manière vous pourrez trouver également les deux points qui pourraient être collés à une parenthèse fermante. L'expression veut dire chercher le caractère > puis n'importe quel nombre de caractères qui ne sont pas < ou > puis n'importe quel caractère qui n'est pas un espace (ou un retour à la ligne, espace insécable etc.) puis le caractère :
Nicolas F is offline   Reply With Quote