Posts: 1,105
Threads: 18
Joined: Jan 2008
Reputation:
8
04-10-2008, 04:01 PM
What do you mean by "not working properly"?
If you meant "its not opening", I have checked on firefox as well as IE and I am able to open the given link.
Posts: 3
Threads: 0
Joined: Apr 2008
Reputation:
0
04-10-2008, 04:21 PM
Hi Ankur,
I enterd as
Regular Expression:[A-Za-z]*
&Test String:abc123
then When I click on the test button its showing as
Test Results: True
It should be False.Bcoz the string contain numaric values.
--------------------------------------------------------------------------------
Posts: 1,105
Threads: 18
Joined: Jan 2008
Reputation:
8
04-10-2008, 06:56 PM
It is giving correct result.
Regular Expression:[A-Za-z]* means match capital A-Z or small a-z 0 or more times so even if you have 123 instead of abc it will pass.
Change it to [A-Za-z]+ (match capital A-Z or small a-z 1 or more times) and you will see that a123 would be "True" but 123 would yield "false"
Posts: 35
Threads: 19
Joined: Feb 2008
Reputation:
0
04-11-2008, 12:03 PM
Hi Ankur,
How to use regular expression in replace function
I want to discard numbers in text
Below is the issue
Text1 = "hello1234"
replace(Text1,[0-9],"") 'This line throws syntax error
Posts: 1,105
Threads: 18
Joined: Jan 2008
Reputation:
8
04-11-2008, 12:37 PM
@kamalteja: please post a new question on a separate thread.