Split, Sub, Subn functions of re module in pythonBefore looking into the Split, Sub, Subn functions of the re module in python, let us understand a little bit about the re module offered by python. A regex or Regular Expression (RE) is a particular text string that is very useful in defining a search pattern in a computer language. It’s great for extracting data from text, such as code, files, logs, spreadsheets, and even papers. Regular expressions (also known as REs, regexes, or regex patterns) are a small, highly specialized computer language that is integrated into Python and accessible through the re module. You provide the criteria for the collection of potential strings that you wish to match using this small language; this set may include English phrases, e-mail addresses, TeX instructions, or anything else you desire. Then you may ask things like, “Does this string match the pattern?” or “Is there a pattern match everywhere in this string?” REs can also be used to change or split a string in a variety of ways. Regular expression patterns are converted into bytecodes, which are subsequently performed by a C-based matching engine. To create a bytecode that runs quicker, it may be required to pay close attention to how the engine will execute a particular RE and write the RE in a specific style for advanced use. Because the regular expression language is short and limited, regular expressions cannot be used to do all string processing jobs. Some tasks can be accomplished using regular expressions, but the expressions are quite complex. In certain circumstances, creating Python code to perform the processing may be preferable; while Python code is slower than a complex regular expression, it is also likely to be more intelligible. The majority of letters and characters will simply match. The regular expression test, for example, will perfectly match the string test. (A case-insensitive mode may be enabled, allowing this RE to match Test or TEST as well; more on that later.) There are some exceptions to this rule; certain characters are special metacharacters that don’t match. Instead, they indicate that something unusual should be matched, or they have an effect on other parts of the RE by repeating or modifying their meaning. [and] are the first strings that are going to be observed by us. They’re used to identify a character class, which is a collection of characters to match. Individual characters can be stated, or a range of characters can be indicated by using two characters and a ‘-‘ to separate them. [abc], for example, will match any of the letters a, b, or c; this is the same as [a-c], which expresses the same set of characters using a range. Your RE would be [a-z] if you just wanted to match lowercase letters. Inside of classes, metacharacters are inactive. By complementing the set, you can match characters who aren’t included in the class. An ” as the initial character of the class indicates this. For instance, [5] will match any character other than the letter ‘5.’ The caret has no special significance if it appears elsewhere in a character class. [5] will match either a ‘5’ or a “, for instance. The backslash is maybe the most essential metacharacter. The backslash can be followed by various characters to signify various specific sequences, just like in Python string literals. the escaping of all the matter characters in a regular expression can be then with the help of the backslash it plays a very important role in defining various characters in the regular expression. Both special and conventional characters can be used in regular expressions. The simplest regular expressions are the most common characters, such as ‘A’, ‘a’, or ‘0’; they simply match themselves. Ordinary characters can be concatenated, so last matches the string ‘last’. Some characters, such as ‘|’ and ‘(,’ are unique. Special characters either represent classes of ordinary characters or impact the interpretation of regular expressions around them. Repetition qualifiers (*, +,?, m,n, and so on) cannot be nested directly. This eliminates ambiguity with the non-greedy suffix?, as well as other modifiers in other implementations. Parentheses can be used to add a second repetition to an inner repetition. The equation (?:a6*) matches any multiple of six ‘a’ letters, for example. Those characters discussed above are:
Now let us see the respective codes for all the functions of the re module. The split () method in re module in python:The built-in re module has the split() method, which splits a text based on regular expression matches. The split() function has the following syntax: Syntax: This is the syntax:
The code for the split() method in the re module in python is like this, Code: Output: [email protected]:~$ python3 re1.py Select among the options printed below:: 1. To use split() method of re module. 2. To use split() method of re module with maxsplit parameter. 3. To use split() method of re module with maxsplit and flag parameter. 4. To finish the code execution and exit. 1 Enter the string that you want to split. Hi my name is nirnay khajuria and I'm author of this python code Enter the regular expression for performing the split operation on the input string. /s+ The result after the split operation:: ['Hi', 'my', 'name', 'is', 'nirnay', 'khajuria', 'and', "I'm", 'author', 'of', 'this', 'python', 'code'] Move further with code execution enter (y/n) as the input y Select among the options printed below:: 1. To use split() method of re module. 2. To use split() method of re module with maxsplit parameter. 3. To use split() method of re module with maxsplit and flag parameter. 4. To finish the code execution and exit. 2 Enter the string that you want to split. This example will show the use case of maxsplit parameter of the split() method of re module. Enter the regular expression for performing the split operation on the input string. /s+ Enter the maximum number of splits that you want. 6 The result after the split operation with maxsplit parameter:: ['This', 'example', 'will', 'show', 'the', 'use', 'case of maxsplit parameter of the split() method of re module.'] Move further with code execution enter (y/n) as the input y Select among the options printed below:: 1. To use split() method of re module. 2. To use split() method of re module with maxsplit parameter. 3. To use split() method of re module with maxsplit and flag parameter. 4. To finish the code execution and exit. 2 Enter the string that you want to split. This example will show the use case of maxsplit parameter of the split() method of re module. Enter the regular expression for performing the split operation on the input string. /s+ Enter the maximum number of splits that you want. 9 The result after the split operation with maxsplit parameter:: ['This', 'example', 'will', 'show', 'the', 'use', 'case', 'of', 'maxsplit', 'parameter of the split() method of re module.'] Move further with code execution enter (y/n) as the input y Select among the options printed below:: 1. To use split() method of re module. 2. To use split() method of re module with maxsplit parameter. 3. To use split() method of re module with maxsplit and flag parameter. 4. To finish the code execution and exit. 3 Enter the string that you want to split. This example will show the use case of maxsplit parameter of the split() method of re module. Enter the regular expression for performing the split operation on the input string. /s+ Enter the maximum number of splits that you want. 20 The result after the split operation with maxsplit and flag parameter:: ['This', 'example', 'will', 'show', 'the', 'use', 'case', 'of', 'maxsplit', 'parameter', 'of', 'the', 'split()', 'method', 'of', 're', 'module.'] Move further with code execution enter (y/n) as the input y Select among the options printed below:: 1. To use split() method of re module. 2. To use split() method of re module with maxsplit parameter. 3. To use split() method of re module with maxsplit and flag parameter. 4. To finish the code execution and exit. 4 Explanation: So in the above-written code, we have seen the usage of the split method and how we can use this method with different parameters. In the above-written code, we have created a class that has different functions representing the different use case scenario of the split function with its different parameters the first function is used to display the usage of the split method with its default input parameters there are two defaults input parameters which are the input string and the regular expression these two input parameters are used to split the input string based on the regular expression specified the second function represent the usage of the split method with the max split parameter in this scenario the splitting of the input string based on provided regular expression is limited up to the max split parameter specified by the user and in the last function we have used the flag parameter of the split function. Sub() function of re module in python:Return the string obtained by replacing the replacement repl with the leftmost non-overlapping instances of the pattern in the string. If the pattern isn’t found, the string is left alone. In other words, n becomes a single newline character, r becomes a carriage return, and so on. Unknown ASCII letter escapes are set aside for future use and are viewed as mistakes. Other undiscovered escapes, such as &, are left to their own devices. Syntax:
The sub() function searches the string for a pattern and replaces the matched strings with the replacement string (repl). If the sub() function fails to discover a match, the original string is returned. Otherwise, the sub() function replaces the matches and returns the string. The leftmost non-overlapping repetitions of the pattern are replaced with the sub() function. In the following example, you’ll see it in further detail. Code: Output: [email protected]:~$ python3 re2.py Select among the options printed below:: 1. To use sub() method of re module. 2. To use sub() method of re module with repl parameter. 3. To use sub() method of re module with repl and count parameters. 4. To finish the code execution and exit. 1 Enter the string on which you want to perform the replacement. This-is-a-simple-string-having-hyphen-instead-of-space Enter the regular expression according to which you want to do replace on the input string. /- The result after the sub-operation:: This is a simple string having a hyphen instead of a space Move further with code execution enter (y/n) as the input y Select among the options printed below:: 1. To use sub() method of re module. 2. To use sub() method of re module with repl parameter. 3. To use sub() method of re module with repl and count parameters. 4. To finish the code execution and exit. 2 Enter the string on which you want to perform the replacement. This-is-a-simple-string-having-hyphen-instead-of-space Enter the regular expression according to which you want to do replace on the input string. /- Enter repl string. _ The result after the sub-operation:: This_is_a_simple_string_having_hyphen_instead_of_space Move further with code execution enter (y/n) as the input y Select among the options printed below:: 1. To use sub() method of re module. 2. To use sub() method of re module with repl parameter. 3. To use sub() method of re module with repl and count parameters. 4. To finish the code execution and exit. 3 Enter the string on which you want to perform the replacement. This-is-a-simple-string-having-hyphen-instead-of-space Enter the regular expression according to which you want to do replace on the input string. /- Enter repl string. _ Enter max count. 5 The result after the sub-operation:: This_is_a_simple_string_having-hyphen-instead-of-space Move further with code execution enter (y/n) as the input y Select among the options printed below:: 1. To use sub() method of re module. 2. To use sub() method of re module with repl parameter. 3. To use sub() method of re module with repl and count parameters. 4. To finish the code execution and exit. 1 Enter the string on which you want to perform the replacement. Only replace the hyphen in this-sentence Enter the regular expression according to which you want to do replace on the input string. /- The result after the sub-operation:: Only replace the hyphen in this sentence Move further with code execution enter (y/n) as the input y Select among the options printed below:: 1. To use sub() method of re module. 2. To use sub() method of re module with repl parameter. 3. To use sub() method of re module with repl and count parameters. 4. To finish the code execution and exit. 2 Enter the string on which you want to perform the replacement. Replace +this string+ Enter the regular expression according to which you want to do replace on the input string. /+ Enter repl string. * The result after the sub-operation:: Replace *this string* Move further with code execution enter (y/n) as the input Y Select among the options printed below:: 1. To use sub() method of re module. 2. To use sub() method of re module with repl parameter. 3. To use sub() method of re module with repl and count parameters. 4. To finish the code execution and exit. 3 Enter the string on which you want to perform the replacement. My [email protected] is [email protected] Enter the regular expression according to which you want to replace on the input string. /@ Enter repl string. a Enter max count. 1 The result after the sub-operation:: My mail is [email protected] Move further with code execution enter (y/n) as the input N Explanation: For the above-written code, we have seen the usage of the sub method and its usage with different parameters. In the above-written code, we have created a class that has different functions representing the different use case scenario of the sub function with its different parameters the first function is used to display the usage of the sub method with its default input parameters there are two defaults input parameters which are the input string and the regular expression these two input parameters are used to replace the input string based on the regular expression specified, the second function represent the usage of the sub method with the repl parameter in this scenario the replacement of the input string is based on provided regular expression is limited up to the count parameter is depicted in the last function. Subn function of re module:The regular expressions (RE) module in Python has a function called subn() that defines strings or a group of strings or patterns that match it. The RE module must be imported before we can utilize this function. The subn() method is similar to the sub() function, but it additionally gives you a count of how many replacements you’ve done. Syntax:
Code: Output: Select among the options printed below:: 1. To use subn() method of re module. 2. To use subn() method of re module with repl parameter. 3. To use subn() method of re module with repl and count parameters. 4. To finish the code execution and exit. 1 Enter the string on which you want to perform the replacement. This is a sample string to show the usage of subn() function. Enter the regular expression according to which you want to do replace on the input string. () The result after the subm operation:: ('This is a sample string to show the usage of subn function.', 1) Move further with code execution enter (y/n) as the input y Select among the options printed below:: 1. To use subn() method of re module. 2. To use subn() method of re module with repl parameter. 3. To use subn() method of re module with repl and count parameters. 4. To finish the code execution and exit. 2 Enter the string on which you want to perform the replacement. The repl [email protected]@meter is used to [email protected] with a specific string Enter the regular expression according to which you want to do replace on the input string. /@ Enter repl string. a The result after the subn operation:: ('The repl parameter is used to replace with a specific string', 3) Move further with code execution enter (y/n) as the input y Select among the options printed below:: 1. To use subn() method of re module. 2. To use subn() method of re module with repl parameter. 3. To use subn() method of re module with repl and count parameters. 4. To finish the code execution and exit. 3 Enter the string on which you want to perform the replacement. My [email protected] is [email protected] Enter the regular expression according to which you want to do replace on the input string. /@ Enter repl string. a Enter max count. 1 The result after the subn operation:: ('My mail is [email protected]', 1) Move further with code execution enter (y/n) as the input y Select among the options printed below:: 1. To use subn() method of re module. 2. To use subn() method of re module with repl parameter. 3. To use subn() method of re module with repl and count parameters. 4. To finish the code execution and exit. 4 Explanation: For the above-written code, we have seen the usage of the subn method and its usage with different parameters. In the above-written code, we have created a class that has different functions representing the different use case scenario of the subn function with its different parameters the first function is used to display the usage of the subn method with its default input parameters there are two defaults input parameters which are the input string and the regular expression these two input parameters are used to replace the input string based on the regular expression specified, the second function represent the usage of the subn method with the repl parameter in this scenario the replacement of the input string is based on provided regular expression is limited up to the count parameter is depicted in the last function. Conclusion:So, in this article, we understood the usage of the Split, Sub, Subn functions of the re module in python. And we have also seen the sample python code to use these functions in the different scenarios. |
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/263191.html