Posts: 14
Threads: 4
Joined: Apr 2008
Reputation:
0
12-04-2008, 08:54 PM
Hi,
Can anyone help me to write the regular expression for
Rejection (2)
The number in the paranthesis changes very often.
I tried Rejection ([0-9])
and Rejection (\d).. Both dint work
Please let me know the suggestion.
Thanks in advance
Laksh
Posts: 130
Threads: 0
Joined: Jul 2008
Reputation:
0
12-09-2008, 11:37 PM
Sorry it is
Rejection (\d*)
Posts: 31
Threads: 0
Joined: Sep 2008
Reputation:
0
02-03-2009, 12:04 PM
Hi Lakshjai,
All the above expressions will not work because "(" and ")" are special charecters in RegEXP.
Pls use below Regular Expression.
"Rejection \([0-9]\)"
It should work
Thanks
VENKATA
Posts: 14
Threads: 4
Joined: Apr 2008
Reputation:
0
02-03-2009, 08:28 PM
Thanks Venkat,
I will try this and let you know
Posts: 31
Threads: 0
Joined: Sep 2008
Reputation:
0
03-04-2009, 02:53 PM
Hi Ram,
Generic Functions are not related to Application Functionalities. Any function which doesn't contain any of the Operations on Application that is Generic Function.
For Example you can write a function to change the Date format to a different format. That function you can use any where since it doesn't depend on Application.
Similarly below are some Generic fuctions that we can have....
Navigate URL Function with URL as Input Parameter.
Function to Generate Random String with length as Input Parameter.
etc
Hope you are clear
Thanks
VENKATA