[Solved] Newbie need Help python regex [closed]

There are many different approaches to designing a suitable regular expression which depend on the range of possible inputs you are likely to encounter. The following would solve your exact question but could fail given different styled input. You need to provide more details, but this would be a start. re_content = re.search(“aid\: \”([0-9]*?)\”,\W*cmt_id = … Read more

[Solved] Newbie need Help python regex [closed]

Introduction If you are a newbie to Python and need help with regex, you have come to the right place. Regex (or regular expressions) is a powerful tool for manipulating text and can be used to search, edit, and manipulate text. This post will provide an introduction to regex and provide some helpful resources to … Read more