Question : How to match "la+" in a RegEx?

Hi,

I need to construct a RegEx that matches any string that contains:

"la+" (without the quotes)

It doesn't matter what comes before or after, but that substring must be in there.

For the avoidance of doubt, that string itself should also be a match.

Hope that makes sense!

Thanks,

Alan.

Answer : How to match "la+" in a RegEx?

.*la\+.*
Random Solutions  
 
programming4us programming4us