Thank you for taking care of this. > DM's point that changing the default pattern might also adversely > affect performance is also noted. And I suspect he's right, though I > haven't tested. I'm willing to explore or help with other options if > this capability is needed, but think it's best for BoltWire if we > think of info var field names as a variable, not a string. IE, not > spaces or weird punctuation, etc.
Changing if ($BOLTinfoVarPat == '') $pattern = '/^(\S+)\: (.+)?/m'; aka "no white space" to if ($BOLTinfoVarPat == '') $pattern = '/^([A-Za-z0-9]+)\: (.+)?/m'; wouldn't hurt? Greetings, Martin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "BoltWire" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/boltwire?hl=en -~----------~----~----~----~------~----~------~--~---
