简体   繁体   中英

Java regex plus at the beginning is optional

I would like to write Java regex where plus at the beginning is optional

I try this but not working correctly

[+]+[0-9]{3,}

so that +123 and 123 is valid

What I am doing wrong?

As Hamza commented below, use [+]?[0-9]{3,} . A question mark means one or none of the previous, which in this case means one or no + before the three numbers.

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