Vous pouvez utiliser une expression régulière dans la recherche (ou dans RegEx Pal) pour effectuer le changement de . à :
Dans la recherche, vous devez commencer par regex :
Voici une recherche possible :
regex:(?<=\\fr \d+)\.(?=\d)
Cela signifie : effectuer une recherche par expression régulière pour un point précédé de \fr et d'un ou plusieurs chiffres, et suivi d'un chiffre.
La chaîne de remplacement serait simplement le deux-points.
Si vous vouliez trouver n'importe quel point précédé de chiffres et suivi d'un chiffre, vous pourriez supprimer \\fr
You can use a regular expression in the find (or in RegEx Pal) to make the change from . to :
In the find you must start with regex:
Here is one possible search:
regex:(?<=\\fr \d+)\.(?=\d)
This says, do a regular expression search for a period preceded by \fr and one or more digits, and followed by a digit.
The replace string would be just the colon.
If you wanted to find any period preceded by a digits and followed by a digit you could remove the \\fr
Traduit automatiquement depuis English