I'm trying to match certain criteria, where each sentence which starts with lenevo and endswith semicolon should match.
lenevo hello
demo one
example;
I'm using Visual Studio Code with the following regex pattern.
lenevo.*?;
However, it's working into the notepad++ but not in vs code.
How can I accomplish this?