Hi,
I have a problem with a Find/Regular Expression.
Version of UltraEdit: v15.00.0.1043
Regular expression engine: Unix
In a text file I need to look for a specific line where a part of this line match my regular expression.
Here is my regular expression:
My regular expression work well for this example:
166004;000064168098 - 000064168098;571277388;20;000064168098;20110301133913;20110302101021;MAJ DE DONNEES 2011-03-02CG;BJ4768;20110405080225;SIG;ORL;PDR;M8;RNC 266;1;RF;2;T
But doesn't work in this one:
166004;000064168098 - 000064168098;571277388;20;000064168098;20110301133913;20110302101021;MAJ DE DONNEES 2011-03-02CG;BJ4768;20110405080225;SIG;ORL;RRS;M8;RNC 266;1;RF;2;T
It's seems the OR expression "(PDR|RRS)" dont work well for me, at least when the string "RRS" is used... Any idea?
Thank you!
I have a problem with a Find/Regular Expression.
Version of UltraEdit: v15.00.0.1043
Regular expression engine: Unix
In a text file I need to look for a specific line where a part of this line match my regular expression.
Here is my regular expression:
Code: Select all
;2011(03|04)[0-9]*;[0-9]*;.*;.*;[0-9]*;SIG;ORL;(PDR|RRS);
166004;000064168098 - 000064168098;571277388;20;000064168098;20110301133913;20110302101021;MAJ DE DONNEES 2011-03-02CG;BJ4768;20110405080225;SIG;ORL;PDR;M8;RNC 266;1;RF;2;T
But doesn't work in this one:
166004;000064168098 - 000064168098;571277388;20;000064168098;20110301133913;20110302101021;MAJ DE DONNEES 2011-03-02CG;BJ4768;20110405080225;SIG;ORL;RRS;M8;RNC 266;1;RF;2;T
It's seems the OR expression "(PDR|RRS)" dont work well for me, at least when the string "RRS" is used... Any idea?
Thank you!