> On Jun 1, 2020, at 21:31, Howard <[email protected]> wrote:
>
> Here is an input sample:
>
> Arizona (5)
> Minnesota (4)
> Cleveland (2)
> San Diego (4)
>
> Using Grep, I want to remove all the text in each item from the left
> parenthesis on. How can I do that?
including the left parenthesis:
search for \(.+$
replace with nothing
excluding the left parenthesis:
search for (?<=\().+$
replace with nothing
The "exclusion" uses a "lookbehind" match as in "look behind this to see if the
rest matches, but only act on the rest". So here, it says "look behind a left
parenthesis see if you find anything"
--
Jean-Christophe Helary @brandelune
http://mac4translators.blogspot.com
--
This is the BBEdit Talk public discussion group. If you have a feature request
or need technical support, please email "[email protected]" rather than
posting here. Follow @bbedit on Twitter: <https://twitter.com/bbedit>
---
You received this message because you are subscribed to the Google Groups
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/bbedit/92D88C75-60BE-4A29-A761-56A9F779D7E2%40traduction-libre.org.