Regex: help to finish a regex in rubular

61 Views Asked by At

I need a help to finish a Perl Regex to the context below:

[a-zA-Z:]

------------------------------------------
I have                      I need
------------------------------------------
> str(datasets::ris$)       datasets::ris
> plot(datasets::iris$      datasets::iris
str(datasets::iris$)        datasets::iris
plot(datasets::iris$        datasets::iris
str(iris$)                  iris
plot(iris$                  iris
plot(IRIs$                  IRIs
iris$                       iris
------------------------------------------

http://rubular.com/r/kyLAy679Ql

Thanks,

2

There are 2 best solutions below

2
On

You can use this regex with an optional match and capturing group. Your desired text is available in captured group #1:

/(?:[^(\n]*\()?([a-zA-Z:]+)/

Rubular Demo

0
On

The results are at http://rubular.com/r/IgInzqrwwX

You just need to add a lookahead to your regex [a-zA-Z:]+(?=\s*\$)