<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Rishikesh Agrawani</title>
    <description>The latest articles on DEV Community by Rishikesh Agrawani (@hygull).</description>
    <link>https://dev.to/hygull</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F69957%2F73d071af-79bd-41c3-be8b-c89477ec3f70.jpeg</url>
      <title>DEV Community: Rishikesh Agrawani</title>
      <link>https://dev.to/hygull</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hygull"/>
    <language>en</language>
    <item>
      <title>Answer: How can I find out if an array contains a certain string?</title>
      <dc:creator>Rishikesh Agrawani</dc:creator>
      <pubDate>Sat, 24 Jul 2021 14:32:53 +0000</pubDate>
      <link>https://dev.to/hygull/answer-how-can-i-find-out-if-an-array-contains-a-certain-string-1m3n</link>
      <guid>https://dev.to/hygull/answer-how-can-i-find-out-if-an-array-contains-a-certain-string-1m3n</guid>
      <description>&lt;div class="ltag__stackexchange--container"&gt;
  &lt;div class="ltag__stackexchange--title-container"&gt;
    
      &lt;div class="ltag__stackexchange--title"&gt;
        &lt;h1&gt;
          &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--7Gn-iPj_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/stackoverflow-logo-b42691ae545e4810b105ee957979a853a696085e67e43ee14c5699cf3e890fb4.svg" alt=""&gt;
            &lt;a href="https://stackoverflow.com/questions/68508086/how-can-i-find-out-if-an-array-contains-a-certain-string/68508260#68508260" rel="noopener noreferrer"&gt;
              &lt;span class="title-flare"&gt;answer&lt;/span&gt; re:  How can I find out if an array contains a certain string?
            &lt;/a&gt;
        &lt;/h1&gt;
        &lt;div class="ltag__stackexchange--post-metadata"&gt;
          &lt;span&gt;Jul 24 '21&lt;/span&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;a class="ltag__stackexchange--score-container" href="https://stackoverflow.com/questions/68508086/how-can-i-find-out-if-an-array-contains-a-certain-string/68508260#68508260" rel="noopener noreferrer"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Y9mJpuJP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/stackexchange-arrow-up-eff2e2849e67d156181d258e38802c0b57fa011f74164a7f97675ca3b6ab756b.svg" alt=""&gt;
        &lt;div class="ltag__stackexchange--score-number"&gt;
          0
        &lt;/div&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--wif5Zq3z--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/stackexchange-arrow-down-4349fac0dd932d284fab7e4dd9846f19a3710558efde0d2dfd05897f3eeb9aba.svg" alt=""&gt;
      &lt;/a&gt;
    
  &lt;/div&gt;
  &lt;div class="ltag__stackexchange--body"&gt;
    
&lt;p&gt;The use of regular expressions will be more useful in this case.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;In &lt;strong&gt;Regular expression&lt;/strong&gt;, &lt;code&gt;^&lt;/code&gt; is used to match start, &lt;code&gt;$&lt;/code&gt; is to match end &amp;amp; &lt;code&gt;\s&lt;/code&gt; is to match whitespace (newline, tab, space etc.).&lt;/p&gt;
&lt;/blockquote&gt;
&lt;pre&gt;&lt;code&gt;function getTheExactStrings(myarray, myname) {
    // Write a regular expression as per your need&lt;/code&gt;&lt;/pre&gt;…
    
  &lt;/div&gt;
  &lt;div class="ltag__stackexchange--btn--container"&gt;
    
      &lt;a href="https://stackoverflow.com/questions/68508086/how-can-i-find-out-if-an-array-contains-a-certain-string/68508260#68508260" rel="noopener noreferrer"&gt;Open Full Answer&lt;/a&gt;
    
  &lt;/div&gt;
&lt;/div&gt;


</description>
    </item>
    <item>
      <title>Setting Anaconda PATH on windows</title>
      <dc:creator>Rishikesh Agrawani</dc:creator>
      <pubDate>Sun, 29 Apr 2018 09:47:44 +0000</pubDate>
      <link>https://dev.to/hygull/setting-anaconda-path-on-windows-2dmn</link>
      <guid>https://dev.to/hygull/setting-anaconda-path-on-windows-2dmn</guid>
      <description>&lt;h1&gt;
  
  
  Anaconda PATH Settings
&lt;/h1&gt;

&lt;p&gt;I have installed Anaconda inside &lt;code&gt;C:\Anaconda5.1Python3.6&lt;/code&gt; directory.&lt;/p&gt;

&lt;p&gt;In my case, I have the following 5 &lt;code&gt;paths&lt;/code&gt; as the value of &lt;strong&gt;PATH&lt;/strong&gt; environment variable. I have appended these PATHs one after one by putting &lt;code&gt;;&lt;/code&gt; as a separator of 2 PATHs.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;C:\Anaconda5.1Python3.6
C:\Anaconda5.1Python3.6\Library\mingw-w64\bin
C:\Anaconda5.1Python3.6\Library\usr\bin
C:\Anaconda5.1Python3.6\Library\bin
C:\Anaconda5.1Python3.6\Scripts
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Now you can start new &lt;strong&gt;Anaconda promt&lt;/strong&gt; or &lt;strong&gt;Windows command line&lt;/strong&gt; and type the below command to check Python version.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;python --version
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;You can also run &lt;strong&gt;Python interpreter&lt;/strong&gt; by typing the below command on &lt;strong&gt;Anaconda prompt&lt;/strong&gt; or &lt;strong&gt;Windows command line&lt;/strong&gt;.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;python
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Everything is ok if you are able to get into the Python interpreter and execute Python statements.&lt;/p&gt;

</description>
      <category>anaconda</category>
      <category>path</category>
      <category>windows</category>
    </item>
  </channel>
</rss>
