(string1, string2)
| 234 | |
| 235 | @staticmethod |
| 236 | def string_mod(string1, string2): |
| 237 | if string1 is None or string2 is None: |
| 238 | return None |
| 239 | return str(Precise(string1).mod(Precise(string2))) |
| 240 | |
| 241 | @staticmethod |
| 242 | def string_or(string1, string2): |