How to match this regexp in UNIX with expr?

224 Views Asked by At

Can some body pl tell me why this if condition doesn't output Matched and how to change the reg exp pattern with expr to display the output as Matched. The thing is that instead of BH in the var variable there can be any country code like US or CA. All the other characters in the variable remains the same.

var1="BH.EBS.EBS.BH.RCMS.RCMS.FBACCR"
if [ `expr $var1 : "*.EBS.EBS.*.RCMS.RCMS.FBACCR"` -gt 0 ]; then
echo "Matched"
else
echo "Not matched"
fi

Thanks Gautam

1

There are 1 best solutions below

2
On

Something like this would do it:

.\.EBS\.EBS\...\.RCMS\.RCMS\.FBACCR

Just keep in mind that the dots in your original string are a special type of character in a regexp, this means they won't be interpreted as a dot. It says instead that is could be any char. Then you have to scape them, hence the backslash.

Finally where you need to match BH, you can use dots .. if the country codes are guaranteed to be 2 chars long. If not, you can use instead:

.*\.EBS\.EBS\..*\.RCMS\.RCMS\.FBACCR