Skip to content
Advertisement

Do regular expressions from the re module support word boundaries (b)?

While trying to learn a little more about regular expressions, a tutorial suggested that you can use the b to match a word boundary. However, the following snippet in the Python interpreter does not work as expected:

JavaScript

It should have been a match object if anything was matched, but it is None.

Is the b expression not supported in Python or am I using it wrong?

Advertisement

Answer

You should be using raw strings in your code

JavaScript

Also, why don’t you try

JavaScript

Output:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement