Dawood Mohammed

Greenhorn
+ Follow
since Sep 06, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Dawood Mohammed

Hi,
Can somebody please tell me which is the best IDE (freeware) to use for developing applications using JSP and Struts in Redhat 9.0 Linux. Right now I am using Eclipse with Exadel plugin(free version).

Thanks in advance.

with regards,
Dawood.
18 years ago
Thanx a lot for ur solution Kevin Davies.

can u please give me the solution for my other question:

For the example below, can I write a regular expression to get key, value pairs.

example: ((abc def) (ghi jkl) (a ((b c) (d e))) (mno pqr) (a ((abc def))))

in the above example
abc is key & def is value
ghi is key & jkl is value
a is key & ((b c) (d e)) is value
and so on.


Thanks in advance
18 years ago
Friedman,
Thanx for ur response. how do we use antlr or state machines in java program can u please give an example as I dont have any idea about antlr.

Thanx in advance
18 years ago
thanx for ur quick response. actually both the problems are very urgent for me as both of them are interrelated in my project.
18 years ago
I have tried using lookahead, lookbehind regular expressions to solve this problem. but, couldnt work out how lookahead and lookbehind works
18 years ago
Hi,
For the example below, can I write a regular expression to get key, value pairs.

example: ((abc def) (ghi jkl) (a ((b c) (d e))) (mno pqr) (a ((abc def))))

in the above example
abc is key & def is value
ghi is key & jkl is value
a is key & ((b c) (d e)) is value
and so on.

can anybody pls help me in resolving this problem using regular expressions...

Thanks in advance
[ September 06, 2005: Message edited by: Michael Ernest ]
18 years ago
Hi,
I have a string from which i want to get strings seperated by space, which may also include string with double quotes.

for e.g: business political international "sports news" "local news" editorial

The result of parsing the above string with regular expression must be:
business
political
sports news
local news
editorial

please help me in solving this problem, this is pretty urgent.

Thanks and regards,
Dawood.
18 years ago