Removes payload delimiters from inside the input string
(self, value)
| 1224 | return "%s%s%s" % (PAYLOAD_DELIMITER, value, PAYLOAD_DELIMITER) if value else value |
| 1225 | |
| 1226 | def removePayloadDelimiters(self, value): |
| 1227 | """ |
| 1228 | Removes payload delimiters from inside the input string |
| 1229 | """ |
| 1230 | |
| 1231 | return value.replace(PAYLOAD_DELIMITER, "") if value else value |
| 1232 | |
| 1233 | def extractPayload(self, value): |
| 1234 | """ |