02-14-2013, 11:17 AM
to treat * as a normal character insetad of special characters,you need to use escape characters (\).
For example
If you want to match 1+1=2, the correct regex is 1\+1=2. Otherwise, the plus sign will have a special meaning.
Regards,
Ankesh
For example
If you want to match 1+1=2, the correct regex is 1\+1=2. Otherwise, the plus sign will have a special meaning.
Regards,
Ankesh