#\b^([0-9]{7,8}(\s/[0-9]{4})?|Charges|[\-]{3}|UNIVERSAL\sCONNECTIVITY-DCS|FEDERAL\sREGULATORY\sFEE-DCS|PROPERTY\sTAX\sALLOTMENT-DCS|ADMINISTRATIVE\sEXPENSE\sFEE-DCS)\b#m
I'm trying to do a match on a set of very... variable data, and I cannot for the life of me determine how to match a three-dash string.
The regex in question is
[\-]{3}
In which I have tried a hundred combinations to get it to work, but it does NOT ever match 3 dashes for me.
Any ideas? =/