remove version from requirements file in python with regex

Python -- Posted on July 25, 2023

A regex expression to remove the version number in requirements file in python. Used in vs code to replace the number with empty string 

              
                ==[\d].*
                  
   
            

Related Posts