regular expression problem

Can anyone please provide me the reg exp for the following codeIF NUM1 > = 1The condition is that there can be any number of spaces(atleast one) between IF & NUM1,between NUM1 & > ,between > and = and between = & 1
[263 byte] By [viru@suna] at [2007-10-3 1:28:31]
# 1
"IF\\s+NUM1\\s+>\\s+=\\s+1"
kajbja at 2007-7-14 18:26:12 > top of Java-index,Java Essentials,Java Programming...
# 2
Sorry, a correction to the condition:there can be any number of spaces(atleast one) between IF & NUM1,but the spaces are optional between NUM1 & > ,between > and = and between = & 1
viru@suna at 2007-7-14 18:26:12 > top of Java-index,Java Essentials,Java Programming...
# 3

> Sorry, a correction to the condition:

> there can be any number of spaces(atleast one)

> between IF & NUM1,

> but the spaces are optional between NUM1 & >

> ,between > and = and between = & 1

How about you apply a little logic and see if you can figure that out yourself.

Or read these:

[url=http://java.sun.com/docs/books/tutorial/extra/regex/index.html]Sun's Regular Expression Tutorial for Java[/url]

[url=http://www.regular-expressions.info/]Regular-Expressions.info[/url]

jverda at 2007-7-14 18:26:12 > top of Java-index,Java Essentials,Java Programming...