Click here to Skip to main content
15,891,597 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Regex syntax zoo Pin
Cpichols28-Dec-21 1:29
Cpichols28-Dec-21 1:29 
AnswerRe: Regex syntax zoo Pin
Bruce Patin28-Dec-21 6:01
Bruce Patin28-Dec-21 6:01 
GeneralRe: Regex syntax zoo Pin
honey the codewitch28-Dec-21 7:01
mvahoney the codewitch28-Dec-21 7:01 
AnswerRe: Regex syntax zoo Pin
David On Life28-Dec-21 17:42
David On Life28-Dec-21 17:42 
GeneralRe: Regex syntax zoo Pin
honey the codewitch29-Dec-21 0:14
mvahoney the codewitch29-Dec-21 0:14 
GeneralRe: Regex syntax zoo Pin
David On Life31-Dec-21 6:11
David On Life31-Dec-21 6:11 
GeneralRe: Regex syntax zoo Pin
honey the codewitch31-Dec-21 6:52
mvahoney the codewitch31-Dec-21 6:52 
GeneralRe: Regex syntax zoo Pin
David On Life31-Dec-21 20:24
David On Life31-Dec-21 20:24 
Yes. However, the database is Kusto (aka Azure Data Explorer) which has native RegEx support. I use a two-stage approach.

The first stage allows the input of parameters which are passed to Kusto to select a small subset of relevant data (typically 1 to 1,000 records, sometimes more). Parameters may be RegEx, equals, list of matches, contains, startswith, or any other Kusto comparison operation (determined as part of the parameter setup, not by the user). They are not live but processed as part of the query (just like you're suggesting, except there's no 'like' operator in Kusto).

The second stage is local filtering once the data is already on the client. That's the live component. Since the data is already on the client at that point, local filtering is typically faster than requerying. I currently give users the option of either RegEx or simple Contains, but I'm not sure the Contains option is that meaningful.

A typical use case would be using the first stage to pull all storage performance test results in the last month for project x using configuration y. Then use client-side filtering to look for issues (e.g., performance < 90% of expected) and/or further filter on specific test setups (different storage types or different computer types).
GeneralRe: Regex syntax zoo Pin
honey the codewitch31-Dec-21 21:23
mvahoney the codewitch31-Dec-21 21:23 
AnswerRe: Regex syntax zoo Pin
jschell29-Dec-21 7:57
jschell29-Dec-21 7:57 
GeneralRe: Regex syntax zoo Pin
honey the codewitch29-Dec-21 9:42
mvahoney the codewitch29-Dec-21 9:42 
JokeFirst image from James Webb Telescope PinPopular
Jacquers26-Dec-21 19:10
Jacquers26-Dec-21 19:10 
JokeRe: First image from James Webb Telescope Pin
oofalladeez34327-Dec-21 8:21
professionaloofalladeez34327-Dec-21 8:21 
GeneralRe: First image from James Webb Telescope Pin
Mark Miller28-Dec-21 4:31
Mark Miller28-Dec-21 4:31 
QuestionSaving URLs For Later reading? Pin
raddevus26-Dec-21 9:35
mvaraddevus26-Dec-21 9:35 
AnswerRe: Saving URLs For Later reading? Pin
Mircea Neacsu26-Dec-21 9:40
Mircea Neacsu26-Dec-21 9:40 
GeneralRe: Saving URLs For Later reading? Pin
raddevus26-Dec-21 9:46
mvaraddevus26-Dec-21 9:46 
GeneralRe: Saving URLs For Later reading? Pin
Mircea Neacsu26-Dec-21 9:51
Mircea Neacsu26-Dec-21 9:51 
GeneralRe: Saving URLs For Later reading? Pin
David O'Neil26-Dec-21 10:22
professionalDavid O'Neil26-Dec-21 10:22 
GeneralRe: Saving URLs For Later reading? Pin
raddevus26-Dec-21 10:26
mvaraddevus26-Dec-21 10:26 
AnswerRe: Saving URLs For Later reading? Pin
Ron Anders26-Dec-21 9:55
Ron Anders26-Dec-21 9:55 
GeneralRe: Saving URLs For Later reading? Pin
raddevus26-Dec-21 10:24
mvaraddevus26-Dec-21 10:24 
AnswerRe: Saving URLs For Later reading? Pin
David O'Neil26-Dec-21 10:22
professionalDavid O'Neil26-Dec-21 10:22 
GeneralRe: Saving URLs For Later reading? Pin
raddevus26-Dec-21 10:28
mvaraddevus26-Dec-21 10:28 
GeneralRe: Saving URLs For Later reading? Pin
Peter_in_278026-Dec-21 18:00
professionalPeter_in_278026-Dec-21 18:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.