Generally in regular expressions,
1. Anchors are used to specify the start and end of the string. There are two anchors are there in re.
‘^’ and ‘$’.
Ex1:
The regular expression pattern ‘^01*0$’ will match any string that starts and end with zeroes with any number of 1s between them.
2. Wildcard is one special character in regular expressions that acts as a placeholder and can match any character in the given input string. It’s the ‘.’ (dot) character is also called the wildcard character.
' . '
Ex2:
2. Wildcard is one special character in regular expressions that acts as a placeholder and can match any character in the given input string. It’s the ‘.’ (dot) character is also called the wildcard character.
' . '
Ex2:
For example, the pattern ‘hap{1,}y’ matches ‘happy’, ‘happpy’, ‘happpy’ and so on. Here, we had specified that the letter ‘p’ should be present one or more times. But sometime, you don’t always know the letter that you want to repeat in the sentence. In such situations, you’ll need to use the wildcard.
Suppose, you’re asked to write a regex pattern that should match a string that starts with four characters, followed by three 0s and two 1s, followed by any two characters.
The valid strings can be abcd00011ft, jkds00011hf, etc.
The pattern that satisfies above condition would be
1. ‘.{4}0{3}1{2}.{2}’
2. ‘....00011..’
where the dot acts as a placeholder which means anything can sit on the place of the dot.
Suppose, you’re asked to write a regex pattern that should match a string that starts with four characters, followed by three 0s and two 1s, followed by any two characters.
The valid strings can be abcd00011ft, jkds00011hf, etc.
The pattern that satisfies above condition would be
1. ‘.{4}0{3}1{2}.{2}’
2. ‘....00011..’
where the dot acts as a placeholder which means anything can sit on the place of the dot.