iNTERFACEWARE Products Manual > Learning Center > Learning Python > Working With Strings > Pattern Matching in Strings > Pattern Matching Options |
|
Looking for Iguana v.5 or v.6? Learn More or see the Help Center.
Python provides several options that you can use when searching. Of these, the only one that you are likely to use is IGNORECASE:
Here, IGNORECASE specifies that capitalization is to be ignored when matching: for example, A will match a or A. In this example, xyz can match xyz, XYZ, XyZ, or any combination of uppercase and lowercase letters.
|