How do I reference the 'Regular Expression Match 0' column in the Column Formulas?
I'm trying something like regex:binary:content:^\x00+$ column1:=len("Regular Expression Match 0:")
but it doesn't seem ok?
How do we use columns with spaces in their name?
Column Formula's - how to reference columns or fields that have spaces in their name
Re: Column Formula's - how to reference columns or fields that have spaces in their name
To show the regular expression match 0 column:
Include the following in your search:
add-column:regmatch0
For example:
column1:=regmatch0:
column1:=len(regmatch0:)
regmatch0: is a property alias for regular expression match 0.
For example:
column1:=regular-expression-match-0:
column1:=regularexpressionmatch0:
Column Formulas
- Right click the results list column header and click Add columns....
- Search for: reg
- Select Regular Expression Match 0 and click OK.
Include the following in your search:
add-column:regmatch0
with regmatch0:How do I reference the 'Regular Expression Match 0' column in the Column Formulas?
For example:
column1:=regmatch0:
column1:=len(regmatch0:)
regmatch0: is a property alias for regular expression match 0.
Please either convert the spaces to - or leave them out.How do we use columns with spaces in their name?
For example:
column1:=regular-expression-match-0:
column1:=regularexpressionmatch0:
Column Formulas
Re: Column Formula's - how to reference columns or fields that have spaces in their name
Thanks for that, would be good to have that info on the documentation for reference
Re: Column Formula's - how to reference columns or fields that have spaces in their name
Not possible to do it like Excel, 'my sheet name with spaces', they use single quotes to indicate it? Not essential though.
Re: Column Formula's - how to reference columns or fields that have spaces in their name
I'll look into 'property name' support.
It's a little tricky to do because of how Everything parses parameters with column1:=
Thank you for the suggestion.
It's a little tricky to do because of how Everything parses parameters with column1:=
Thank you for the suggestion.