Hi there
I'm trying to develop a regular expression for my ASP.NET web page which will test the following strings:
10.1006/jmbi.1995.0238
10.1145/1219124.1219132
10.1109/TSC.2009.4
10.1177/016555150606490 2
I've used the following guidelines and have come up with:
\d{1,2}\w[^\]\w{16, }
but it's not working. Can anyone suggest a better one?
Cheers, Matt
I'm trying to develop a regular expression for my ASP.NET web page which will test the following strings:
10.1006/jmbi.1995.0238
10.1145/1219124.1219132
10.1109/TSC.2009.4
10.1177/016555150606490 2
I've used the following guidelines and have come up with:
\d{1,2}\w[^\]\w{16, }
but it's not working. Can anyone suggest a better one?
Cheers, Matt
Comment