Regex to match specific sentence in a string

Question:

I need to write a regex to catch this sentence (to remove it in Python):

<?xml version="1.0" encoding="UTF-8"?>

I tried writing this one (on a regex tester), but doesn’t work:

(<?xml version="1.0" encoding="UTF-8"?>)

Does anybody know how to help me?
Thanks

Asked By: wmbff

||

Answers:

In Python regex you need to escape double quotes:

(<?xml version="1.0" encoding="UTF-8"?>)

Regex101 example

Answered By: user56700
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.