简体   繁体   中英

Removing parentheses at the beginning of string

I want to remove text in parentheses which is only before the string like: (bc2) xxxx. How I can do this using regex?

Try this expression s/([()])//g

[ ] is used to create a character set. My character set contains ( and ). So overall, substitute ( and ) with empty string.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM