<?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>question Re: Hi, where can i find the rules of nifi's regex language ? in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165030#M127397</link>
    <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/10685/thierryvernhet.html" nodeid="10685"&gt;@Thierry Vernhet&lt;/A&gt;&lt;/P&gt;&lt;P&gt;NiFi is using Java regular expressions.&lt;/P&gt;&lt;P&gt;Personally, I am using &lt;A href="http://regexr.com/" target="_blank"&gt;http://regexr.com/&lt;/A&gt; to check my regular expressions.&lt;/P&gt;</description>
    <pubDate>Tue, 24 May 2016 20:07:20 GMT</pubDate>
    <dc:creator>pvillard</dc:creator>
    <dc:date>2016-05-24T20:07:20Z</dc:date>
    <item>
      <title>Hi, where can i find the rules of nifi's regex language ?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165029#M127396</link>
      <description />
      <pubDate>Tue, 24 May 2016 20:06:12 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165029#M127396</guid>
      <dc:creator>thierry_vernhet</dc:creator>
      <dc:date>2016-05-24T20:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, where can i find the rules of nifi's regex language ?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165030#M127397</link>
      <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/10685/thierryvernhet.html" nodeid="10685"&gt;@Thierry Vernhet&lt;/A&gt;&lt;/P&gt;&lt;P&gt;NiFi is using Java regular expressions.&lt;/P&gt;&lt;P&gt;Personally, I am using &lt;A href="http://regexr.com/" target="_blank"&gt;http://regexr.com/&lt;/A&gt; to check my regular expressions.&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2016 20:07:20 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165030#M127397</guid>
      <dc:creator>pvillard</dc:creator>
      <dc:date>2016-05-24T20:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, where can i find the rules of nifi's regex language ?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165031#M127398</link>
      <description>&lt;P&gt;Thanks. I'm a novice nifi's user. &lt;/P&gt;&lt;P&gt;I've got in a "extract text" processor this property "grok" below.&lt;/P&gt;&lt;P&gt;grok
&lt;/P&gt;&lt;DIV&gt;&lt;IMG src="https://ip1.i.lithium.com/ce2436479c3a5b8f60c59d2f734b6e822ae9b95f/687474703a2f2f31302e3230302e33302e36363a32383038302f6e6966692f696d616765732f69636f6e496e666f2e706e67" alt="Info" style="float: right; margin-right: 6px; margin-top: 4px;" /&gt;
&lt;DIV&gt;&lt;PRE&gt;^((?&amp;lt;year&amp;gt;\d+).*)$&lt;/PRE&gt;

&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;And I don't understand exactly what it means and espacially  "\d+" and ".*"  &lt;/DIV&gt;</description>
      <pubDate>Tue, 24 May 2016 20:20:03 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165031#M127398</guid>
      <dc:creator>thierry_vernhet</dc:creator>
      <dc:date>2016-05-24T20:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, where can i find the rules of nifi's regex language ?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165032#M127399</link>
      <description>&lt;P&gt;Java reference : &lt;A href="https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html" target="_blank"&gt;https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;\d stands for a digit [0-9] and + means at least one digit.&lt;/P&gt;&lt;P&gt;.* means any characters&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2016 20:20:11 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165032#M127399</guid>
      <dc:creator>pvillard</dc:creator>
      <dc:date>2016-05-24T20:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, where can i find the rules of nifi's regex language ?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165033#M127400</link>
      <description>&lt;P&gt;+1 for the RegexR - i wrote some more complex expressions with it, it has a great interactive and visual explainer to help you out as you progress. The final expression can be copied as is from there into NiFi, no special escapes needed, etc.&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2016 20:24:21 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165033#M127400</guid>
      <dc:creator>andrewg</dc:creator>
      <dc:date>2016-05-24T20:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, where can i find the rules of nifi's regex language ?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165034#M127401</link>
      <description>&lt;P&gt;Check out &lt;A target="_blank" href="http://regexr.com/"&gt;http://regexr.com/&lt;/A&gt; CheatSheet and Examples menu item on the left.&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2016 20:25:16 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165034#M127401</guid>
      <dc:creator>andrewg</dc:creator>
      <dc:date>2016-05-24T20:25:16Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, where can i find the rules of nifi's regex language ?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165035#M127402</link>
      <description>&lt;P&gt;I find nifi regex to have less options. The same regex ( [\.]conf ) in my case to find a configuration file works from outside Nifi.&lt;/P&gt;&lt;P&gt;But on putting this pattern in Nifi ListHDFS processor , File Pattern will not match and the file is never pulled.&lt;/P&gt;&lt;P&gt;Any idea why this would happen ?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Nov 2017 18:03:50 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165035#M127402</guid>
      <dc:creator>tanmoy_official</dc:creator>
      <dc:date>2017-11-07T18:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, where can i find the rules of nifi's regex language ?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165036#M127403</link>
      <description>&lt;P&gt;Hi, personally I am using &lt;A href="https://www.debuggex.com/"&gt;https://www.debuggex.com/&lt;/A&gt; and &lt;A href="https://extendsclass.com/regex-tester.html"&gt;https://extendsclass.com/regex-tester.html&lt;/A&gt; to check regex.&lt;/P&gt;</description>
      <pubDate>Sun, 10 Jun 2018 02:56:40 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165036#M127403</guid>
      <dc:creator>pichufr</dc:creator>
      <dc:date>2018-06-10T02:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, where can i find the rules of nifi's regex language ?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165037#M127404</link>
      <description>&lt;P&gt;Does regexr.com validates if your Nifi expression is valid as well?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Aug 2018 13:16:27 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Hi-where-can-i-find-the-rules-of-nifi-s-regex-language/m-p/165037#M127404</guid>
      <dc:creator>baiology</dc:creator>
      <dc:date>2018-08-27T13:16:27Z</dc:date>
    </item>
  </channel>
</rss>

