Python translator instance

Source: Internet
Author: User
Tags translate function

1. string. maketrans set the string Conversion rule table (translation table)
Copy codeThe Code is as follows:
Allchars = string. maketrans ('','') # All strings, that is, the strings are not replaced.
ATob = string. maketrans ('A', 'B') # convert character a to character B


2. Use the translate function to replace and delete strings.The first parameter is the String Conversion rule table, and the second parameter is the string to be deleted. For example, to replace all e in string s with a, and delete all o
Copy codeThe Code is as follows:
ATob = string. maketrans ('E', 'A ')
S = 'Hello python'
Print s. translate (aTob, 'O ')

Output result:
Hall pythn


3. If we use
Copy codeThe Code is as follows:
Allchars = string. maketrans ('','')
K = allchars. translate (allchars, 'A ')

Allchars indicates all strings, and k indicates removing character a from all strings, that is, all characters except a. Therefore, when we call the following method:
Copy codeThe Code is as follows:
S = 'abc'
Print s. translate (allchars, k)

Literally, the output "except any character that is not character a in string s" means that only character a is output, so the output result is:
A

4. Now, it is not difficult to understand the following function.
Copy codeThe Code is as follows:
Import string
Def translator (frm = '', to ='', delete = '', keep = None ):
If len (to) = 1:
To = to * len (frm)
Trans = string. maketrans (frm,)
If keep is not None:
Allchars = string. maketrans ('','')
Delete = allchars. translate (allchars, keep. translate (allchars, delete ))
Def translate (s ):
Return s. translate (trans, delete)

Return translate call:
Copy codeThe Code is as follows:
Digits_only = translator (keep = string. digits)
Print digits_only ('chris Perkins: 224-7992 ')

Digits_to_hash = translator (frm = string. digits, to = '#')
Print digits_to_hash ('chris Perkins: 224-7992 ')

Output result:
2247992
Chris Perkins :###-####

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.