<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Regex extraction with different field delimiters in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672906#M112706</link>
    <description>&lt;P&gt;Good idea to combine...&lt;/P&gt;&lt;P&gt;Is it possible to replace the NULL with space w/o using SPL? Within the porps.conf&lt;/P&gt;</description>
    <pubDate>Sun, 31 Dec 2023 10:16:40 GMT</pubDate>
    <dc:creator>michael_vi</dc:creator>
    <dc:date>2023-12-31T10:16:40Z</dc:date>
    <item>
      <title>Regex extraction with different field delimiters</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672904#M112704</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I have a very specifc regex extraction (search time extraction)&lt;/P&gt;&lt;P&gt;_raw data example:&lt;/P&gt;&lt;P&gt;| union&lt;BR /&gt;[| makeresults&lt;BR /&gt;| eval _raw = "Dec-28-2023|12:05:46,836|10.150.6.118|148:|some branch|uswer_name|d168a8b9-5647-421b-97ba-f2aa3bceb69a|1:Creation page stack|Success|action_portfolio_forms_c_save.action|8970:PORTFOLIO ONBOARDING - FORMS CAPTURE||3065254228||||||| ~newType|||"]&lt;BR /&gt;[| makeresults&lt;BR /&gt;| eval _raw = "Dec-28-2023|12:05:46,836|10.150.6.118|148:|some branch|uswer_name|d168a8b9-5647-421b-97ba-f2aa3bceb69a|1:Creation page stack|Success|action_portfolio_forms_c_save.action|8970:PORTFOLIO ONBOARDING - FORMS CAPTURE||3065254228|||||||oldType~newType|||"]&lt;BR /&gt;[| makeresults&lt;BR /&gt;| eval _raw = "Dec-28-2023|12:05:46,836|10.150.6.118|148:|some branch|uswer_name|d168a8b9-5647-421b-97ba-f2aa3bceb69a|1:Creation page stack|Success|action_portfolio_forms_c_save.action|8970:PORTFOLIO ONBOARDING - FORMS CAPTURE||3065254228||||||||||"]&lt;/P&gt;&lt;P&gt;I want to extract 2 fields from position 19 of the pipe and until 20th position that include (or may not) 2 fields that need to be extracted&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;new&lt;/STRONG&gt;: comes right after 19th | and before ~&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;old&lt;/STRONG&gt;: comes after ~ and before 20th |&lt;/P&gt;&lt;P&gt;There are 3 option that the data may appear:&lt;/P&gt;&lt;P&gt;|&amp;lt;space&amp;gt;~newType|&lt;/P&gt;&lt;P&gt;|oldType~newType|&lt;/P&gt;&lt;P&gt;|&amp;lt;null&amp;gt;&amp;lt;null&amp;gt;|&lt;/P&gt;&lt;P&gt;The problem that I have is when no data is presented (3rd option) , then the props.conf doesn't parse it&lt;/P&gt;&lt;P&gt;In the end I need to have 2 fields, based on the example above:&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="44.32258064516129%" height="25px"&gt;old&lt;/TD&gt;&lt;TD width="55.67741935483871%" height="25px"&gt;new&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="44.32258064516129%" height="25px"&gt;&amp;lt;space&amp;gt;&lt;/TD&gt;&lt;TD width="55.67741935483871%" height="25px"&gt;newType&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="44.32258064516129%" height="25px"&gt;oldType&lt;/TD&gt;&lt;TD width="55.67741935483871%" height="25px"&gt;newType&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="44.32258064516129%" height="25px"&gt;&amp;lt;space&amp;gt;&lt;/TD&gt;&lt;TD width="55.67741935483871%" height="25px"&gt;&amp;lt;space&amp;gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;props.conf&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[user_activity]
REPORT-bb_extract = REPORT-bb_extract
EXTRACT-oldAccountType = ^(?:[^|]*\|){19}(?&amp;lt;old&amp;gt;[^\~|\|]*)
EXTRACT-newAccountType = (?:[^~]*\~){1}(?&amp;lt;new&amp;gt;[^|]*)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;transforms.conf&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[REPORT-bb_extract]
KEEP_EMPTY_VALS = true
DELIMS = "|"
FIELDS = "DATE","TIME","ip","branch","appName","userName","actionID","actionType","actionStatus","actionName","action","srcPortfolioId","refID","currency","TotalAmount","secondPortfolioId","multiTransfer","field18","field19","id2","field21","new","old"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. How can I extract the field that may or may not include some value&lt;/P&gt;&lt;P&gt;2. How can I fix the the second regex to start with ~ after 19th |&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 31 Dec 2023 09:44:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672904#M112704</guid>
      <dc:creator>michael_vi</dc:creator>
      <dc:date>2023-12-31T09:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: Regex extraction with different field delimiters</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672905#M112705</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/231633"&gt;@michael_vi&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;please try this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| union
[| makeresults
| eval _raw = "Dec-28-2023|12:05:46,836|10.150.6.118|148:|some branch|uswer_name|d168a8b9-5647-421b-97ba-f2aa3bceb69a|1:Creation page stack|Success|action_portfolio_forms_c_save.action|8970:PORTFOLIO ONBOARDING - FORMS CAPTURE||3065254228||||||| ~newType|||"]
[| makeresults
| eval _raw = "Dec-28-2023|12:05:46,836|10.150.6.118|148:|some branch|uswer_name|d168a8b9-5647-421b-97ba-f2aa3bceb69a|1:Creation page stack|Success|action_portfolio_forms_c_save.action|8970:PORTFOLIO ONBOARDING - FORMS CAPTURE||3065254228|||||||oldType~newType|||"]
[| makeresults
| eval _raw = "Dec-28-2023|12:05:46,836|10.150.6.118|148:|some branch|uswer_name|d168a8b9-5647-421b-97ba-f2aa3bceb69a|1:Creation page stack|Success|action_portfolio_forms_c_save.action|8970:PORTFOLIO ONBOARDING - FORMS CAPTURE||3065254228||||||||||"]
| rex "^([^\|]*\|){19}(?&amp;lt;OldType&amp;gt;[^\~]*)\~(?&amp;lt;NewType&amp;gt;[^\|]*)"
| fillnull value=" " OldType
| fillnull value=" " NewType
| table OldType NewType&lt;/LI-CODE&gt;&lt;P&gt;You can test the regex at&amp;nbsp;&lt;A href="https://regex101.com/r/gETm2b/1" target="_blank"&gt;https://regex101.com/r/gETm2b/1&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Sun, 31 Dec 2023 09:54:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672905#M112705</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-12-31T09:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: Regex extraction with different field delimiters</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672906#M112706</link>
      <description>&lt;P&gt;Good idea to combine...&lt;/P&gt;&lt;P&gt;Is it possible to replace the NULL with space w/o using SPL? Within the porps.conf&lt;/P&gt;</description>
      <pubDate>Sun, 31 Dec 2023 10:16:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672906#M112706</guid>
      <dc:creator>michael_vi</dc:creator>
      <dc:date>2023-12-31T10:16:40Z</dc:date>
    </item>
    <item>
      <title>Re: Regex extraction with different field delimiters</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672907#M112707</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/231633"&gt;@michael_vi&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;using my search, you replace the NULLs with space in SPL,&lt;/P&gt;&lt;P&gt;I'm not sure that's possible to do it in props.conf, but you could create a calculated field that automatically transforms null in space.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Sun, 31 Dec 2023 10:33:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672907#M112707</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-12-31T10:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: Regex extraction with different field delimiters</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672908#M112708</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is that, once props can't extract the field. it won't be shown in extracted fileds.&lt;/P&gt;&lt;P&gt;so..&amp;nbsp; |&amp;nbsp;&lt;SPAN&gt;fillnull value=NULL will not work&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 31 Dec 2023 10:37:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672908#M112708</guid>
      <dc:creator>michael_vi</dc:creator>
      <dc:date>2023-12-31T10:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: Regex extraction with different field delimiters</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672909#M112709</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/231633"&gt;@michael_vi&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;using this search, you have two evals (that you can save as calculated fields) that makes the same job:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| union
[| makeresults
| eval _raw = "Dec-28-2023|12:05:46,836|10.150.6.118|148:|some branch|uswer_name|d168a8b9-5647-421b-97ba-f2aa3bceb69a|1:Creation page stack|Success|action_portfolio_forms_c_save.action|8970:PORTFOLIO ONBOARDING - FORMS CAPTURE||3065254228||||||| ~newType|||"]
[| makeresults
| eval _raw = "Dec-28-2023|12:05:46,836|10.150.6.118|148:|some branch|uswer_name|d168a8b9-5647-421b-97ba-f2aa3bceb69a|1:Creation page stack|Success|action_portfolio_forms_c_save.action|8970:PORTFOLIO ONBOARDING - FORMS CAPTURE||3065254228|||||||oldType~newType|||"]
[| makeresults
| eval _raw = "Dec-28-2023|12:05:46,836|10.150.6.118|148:|some branch|uswer_name|d168a8b9-5647-421b-97ba-f2aa3bceb69a|1:Creation page stack|Success|action_portfolio_forms_c_save.action|8970:PORTFOLIO ONBOARDING - FORMS CAPTURE||3065254228||||||||||"]
| rex "^([^\|]*\|){19}(?&amp;lt;OldType&amp;gt;[^\~]*)\~(?&amp;lt;NewType&amp;gt;[^\|]*)"
| eval 
   OldType=if(isnull(OldType)," ",OldType),
   NewType=if(isnull(NewType)," ",NewType)
| table OldType NewType&lt;/LI-CODE&gt;&lt;P&gt;So you can have them in interesting fields.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Sun, 31 Dec 2023 10:41:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672909#M112709</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-12-31T10:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Regex extraction with different field delimiters</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672911#M112710</link>
      <description>&lt;P&gt;Something is missing.&lt;/P&gt;&lt;P&gt;The 'NewType' filed may or may not start with the ~, if no data then it will start with the |&lt;BR /&gt;In the attached picture the field 'NewType' is missing for the event that has only pipes.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="michael_vi_0-1704023161369.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/28694i5D9E44E3DDDB1C88/image-size/medium?v=v2&amp;amp;px=400" role="button" title="michael_vi_0-1704023161369.png" alt="michael_vi_0-1704023161369.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 31 Dec 2023 11:47:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672911#M112710</guid>
      <dc:creator>michael_vi</dc:creator>
      <dc:date>2023-12-31T11:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: Regex extraction with different field delimiters</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672912#M112711</link>
      <description>&lt;P&gt;Try something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rex "([^\|]*\|){19}(?&amp;lt;oldType&amp;gt;[^~\|]*)~?(?&amp;lt;newType&amp;gt;[^\|]*)"&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 31 Dec 2023 11:47:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672912#M112711</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-12-31T11:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: Regex extraction with different field delimiters</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672914#M112712</link>
      <description>&lt;P&gt;Managed to fix the old and new in props.conf:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rex "^([^\|]*\|){19}(?&amp;lt;OldType&amp;gt;[^\~|\|]*)\~|\|"
| rex "^([^\|]*\|){19}.+~(?&amp;lt;NewType&amp;gt;[^\|]*)\|"&lt;/LI-CODE&gt;&lt;P&gt;Still having trouble with the || (null values)&lt;/P&gt;</description>
      <pubDate>Sun, 31 Dec 2023 12:49:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672914#M112712</guid>
      <dc:creator>michael_vi</dc:creator>
      <dc:date>2023-12-31T12:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: Regex extraction with different field delimiters</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672917#M112713</link>
      <description>&lt;P&gt;&lt;STRIKE&gt;So the approach I took here is to use an EXTRACT in props.conf to target the entire value between pipe 19 and pipe 20.&lt;/STRIKE&gt;&lt;BR /&gt;&lt;STRIKE&gt;And then use EVALS is props to parse out that extracted value depending on its format.&lt;/STRIKE&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;Edit:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Noticed that there is no need to add an additional EXTRACT to props to get the full value because there is a field already extracted named 'id2' doing the same thing. So an even simpler way of doing this would be,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;props.conf entry for forcing empty string if they are null.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[user_activity]
...
EVAL-oldType = if(NOT (match('id2', "^\s*$") OR isnull(id2)), mvindex(split(id2, "~"), 0), "")
EVAL-newType = if(NOT (match('id2', "^\s*$") OR isnull(id2)), mvindex(split(id2, "~"), 1), "")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Evidence of the null values being forced to empty strings&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dtburrows3_0-1704044915856.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/28697iA12EC0B9BD862F19/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dtburrows3_0-1704044915856.png" alt="dtburrows3_0-1704044915856.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;props.conf entries for forcing to single whitespace if values are null from _raw&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[user_activity]
...
EVAL-oldType = if(NOT (match(id2, "^\s*$") OR isnull(id2)), if(mvindex(split(id2, "~"), 0)=="", " ", mvindex(split(id2, "~"), 0)), " ")
EVAL-newType = if(NOT (match(id2, "^\s*$") OR isnull(id2)), if(mvindex(split(id2, "~"), 1)=="", " ", mvindex(split(id2, "~"), 1)), " ")&lt;/LI-CODE&gt;&lt;P&gt;Evidence for the desired values are single whitespaces.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dtburrows3_1-1704045104314.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/28698i44B8FFBCDC2EE1A5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dtburrows3_1-1704045104314.png" alt="dtburrows3_1-1704045104314.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I believe this works against the example you provided and you can see in the screenshot below that I have evaluated some boolean value inline in the search to show if the values are actually null or not.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dtburrows3_0-1704041789793.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/28696i2A9FAAAE57FEFEDE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dtburrows3_0-1704041789793.png" alt="dtburrows3_0-1704041789793.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 31 Dec 2023 17:52:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672917#M112713</guid>
      <dc:creator>dtburrows3</dc:creator>
      <dc:date>2023-12-31T17:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Regex extraction with different field delimiters</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672929#M112714</link>
      <description>&lt;P&gt;Looks good. I'll check it.&lt;/P&gt;&lt;P&gt;I also thought of using EVAL after extraction to replace NULLs and spaces:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;EVAL-OldType=if(isnull(OldType) OR OldType = " ", "noData", OldType)
EVAL-NewType=if(isnull(NewType) OR NewType = " ", "noData", NewType)&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 31 Dec 2023 18:52:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Regex-extraction-with-different-field-delimiters/m-p/672929#M112714</guid>
      <dc:creator>michael_vi</dc:creator>
      <dc:date>2023-12-31T18:52:59Z</dc:date>
    </item>
  </channel>
</rss>

