Tag Archives: Regex

Regular Expressions in q/KDB+

The verb like is used for matching regular expressions in q/KDB+. Usage : X like Y. Reserved characters for pattern matching in q : a) “?” matches a character b) “*” matches a sequence of characters c) “[]” is used … Continue reading

Posted in KDB, Regular Expressions | Tagged | Leave a comment

Equality of Strings in q/KDB+

I came across an error and in the process of solving it discovered more about regular expressions in q. I will list the problem first. I created a fictitious table named t for the same. q)t sym price volume ——————— … Continue reading

Posted in Q, Regular Expressions | Tagged | Leave a comment