Hi,
i have a string that i want to match to a regular expression. The string is
methodName(paraT1 para1, paraT2.name2 para2, paraT3.name3 para3)
Inside the () there can be multiple of "aaa.bbb ccc" and "ddd eee" patterns
The regular expression i wrote was :
(\w)(\s)((((\w.\w)\s(\w))|((\w)\s(\w)))(\s\,\s(((\w.\w)\s(\w))|((\w)\s(\w))))*)
and the I get the first and the last (parameterType para) pattern but not the ones inbetween. How do i get the middle expression.
appreciate a reply
thanks in advance