際際滷

際際滷Share a Scribd company logo
Language ServicesTranslateMediaAccurate. Punctual. Confidential.www.translatemedia.comProfessional Language ServicesLondon  |  New York  |  Paris  |  Munich  |  Hong Kong
Wildcards & Regular expressionsTranslateMediaLondon  |  New York  |  Paris  |  Munich  |  Hong KongAccurate. Punctual. Confidential.
This is a guide for the use of regexes in Word. Wildcards seem different according to the program you use them in (Google, Memoq,)Memoq has its own regex search feature (Auto-translatables window), but better use Word (easier + live double-checking)TranslateMediaLondon  |  New York  |  Paris  |  Munich  |  Hong KongAccurate. Punctual. Confidential.
Why?Processing a fair word count
Preparing files for translationTranslateMediaLondon  |  New York  |  Paris  |  Munich  |  Hong KongAccurate. Punctual. Confidential.
Why?Non-translatables = Numbers
References in a catalogue
Names
Company registration names
etcTranslateMediaLondon  |  New York  |  Paris  |  Munich  |  Hong KongAccurate. Punctual. Confidential.
What?Wildcard= 	a keyboard character that you can use to represent one or many characters.example: * in *.docRegular expression= 	a combination of literal and wildcard characters that you use to match patterns of text.		example:  media[0-9]{3} matches media309, media110, etcTranslateMediaLondon  |  New York  |  Paris  |  Munich  |  Hong KongAccurate. Punctual. Confidential.
Common wildcards? = a single character
* = any number of characters
! = any but the character that followsTranslateMediaLondon  |  New York  |  Paris  |  Munich  |  Hong KongAccurate. Punctual. Confidential.
Markers< = beginning of a word
> = end of a word
^13 = 其TranslateMediaLondon  |  New York  |  Paris  |  Munich  |  Hong KongAccurate. Punctual. Confidential.
Ranges-> [ ][0-9] = any number
[3-6] = any number between 3 and 6 included
[a-z] = any lower case letter
[A-Z] = any upper case letter
[aAiI] = a or A or i or I
etcTranslateMediaLondon  |  New York  |  Paris  |  Munich  |  Hong KongAccurate. Punctual. Confidential.
Repetitions-> { }t{2} = tt
5{6,7} = 555555 or 5555555

More Related Content

Wildcards