A competitive edge…
Reading Time: 1 minute
Using regular expressions in Studio
Search & Replace in the Studio Editor
Let’s say you translated a file containing lots of numbers using the Euro symbol and when you’d finished you realised that the translation should be written as 12,50 € as opposed to € 12,50. Do you translate them all again? Of course not, you just activate the use of regular expressions in the Search & Replace dialogue when the file is open for translation and search for something like this:
€\s(\d+,\d{2})
\s means a space
\d means a single number from 0-9
+ means find whatever you were looking for at least once, but keep looking until you find no more
{2} means find exactly 2 of whatever you were looking for
() putting round brackets around the expression means remember whatever you found inside these brackets
Read more from here