Extracts payload from inside of the input string
(self, value)
| 1231 | return value.replace(PAYLOAD_DELIMITER, "") if value else value |
| 1232 | |
| 1233 | def extractPayload(self, value): |
| 1234 | """ |
| 1235 | Extracts payload from inside of the input string |
| 1236 | """ |
| 1237 | |
| 1238 | _ = re.escape(PAYLOAD_DELIMITER) |
| 1239 | return extractRegexResult(r"(?s)%s(?P<result>.*?)%s" % (_, _), value) |
| 1240 | |
| 1241 | def replacePayload(self, value, payload): |
| 1242 | """ |
no test coverage detected