I have read many posts about defining unimportant text using Grammar Rules as well as the guide (http://www.scootersoftware.com/suppo...nimportantv3); however, I cannot figure out a way to ignore text outside of a set of parentheses, yet still include the parentheses. For example, the string:
&AUTO_START_BBRAM(auto_start_data.auto_start_trip_ report_air_start_pres_low_idle_time)
and I want BC3 to ignore
&AUTO_START_BBRAM()
and keep the comparison
auto_start_data.auto_start_trip_report_air_start_p res_low_idle_time
If there was someway to do regex backtracking in BC3 I could do this by searching for (&AUTO_START_BBRAM\().*(\)), then within that result, ignoring \1 and \2
So far, the closest I have gotten is getting BC3 to ignore the &AUTO_START_BBRAM( and still having the closing paren ) being a difference.
Any help greatly appreciated.
&AUTO_START_BBRAM(auto_start_data.auto_start_trip_ report_air_start_pres_low_idle_time)
and I want BC3 to ignore
&AUTO_START_BBRAM()
and keep the comparison
auto_start_data.auto_start_trip_report_air_start_p res_low_idle_time
If there was someway to do regex backtracking in BC3 I could do this by searching for (&AUTO_START_BBRAM\().*(\)), then within that result, ignoring \1 and \2
So far, the closest I have gotten is getting BC3 to ignore the &AUTO_START_BBRAM( and still having the closing paren ) being a difference.
Any help greatly appreciated.
Comment