I have a group of lines like the following:
tb-set-node-recipe $vpn1 W2K3_SP2_VPN_SRV
tb-set-node-os $vpn2 I_W2K3_SP2_VPN_SRV
tb-set-node-os $xpcli1 I_XP_SP3_VPN_CLI
tb-set-node-os $xpcli2 I_XP_SP2_VPN_CLI
tb-set-node-os $xpcli3 I_XP_SP1_VPN_CLI
tb-set-node-recipe $ftp1 FC8_KS_FTP_SRV
tb-set-node-os $smb1 XP_SP3-STD
tb-set-node-recipe $web1 FC8_KS_WEB_SRV
I am using the following regular expression in the Java language to parse out the tb-set-node-os
statements:
(tb\-set\-node\-os)\s+[\$\w]+\s+\w+
It is working perfectly except for the second to last line that contains $smb1
Does anyone have any idea why this might be? I can't seem to figure this one out. Thanks in advance!