<?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 non-alphanumeric characters that aren't special RegExp characters in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/non-alphanumeric-characters-that-aren-t-special-RegExp/m-p/2227928#M19364</link>
    <description>Can someone please verify for me that I have these characters grouped appropriately, and let me know about the "Unknown" characters (if they are ordinary/allowable or metacharacters/not ordinary/special), please? 
&lt;BR /&gt;I'm trying to figure out what characters we should NOT use (in strings that Talend will be using/calling/whatever) - just to avoid headaches. 
&lt;BR /&gt;Thanks! 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;B&gt;&lt;U&gt;Ordinary/Allowable Characters&lt;/U&gt;&lt;/B&gt; 
&lt;U&gt;&lt;/U&gt; 
&lt;BR /&gt;*Characters that "match themselves" in Regular Expressions 
&lt;BR /&gt;**"Characters other than . $ ^ { } * + ? \ match themselves." ( 
&lt;A href="http://regexlib.com/CheatSheet.aspx" target="_blank" rel="nofollow noopener noreferrer"&gt;http://regexlib.com/CheatSheet.aspx&lt;/A&gt;) 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;&lt;B&gt;Character (Name)&lt;/B&gt;&lt;BR /&gt;@ (&lt;A href="http://en.wikipedia.org/wiki/@" target="_blank" rel="nofollow noopener noreferrer"&gt;Ampersand&lt;/A&gt;)&lt;BR /&gt;# (&lt;A href="http://en.wikipedia.org/wiki/Number_sign" target="_blank" rel="nofollow noopener noreferrer"&gt;Number sign&lt;/A&gt;)&lt;BR /&gt;% (&lt;A href="http://en.wikipedia.org/wiki/%25" target="_blank" rel="nofollow noopener noreferrer"&gt;Percent&lt;/A&gt;)&lt;BR /&gt;- (&lt;A href="http://en.wikipedia.org/wiki/Hyphen" target="_blank" rel="nofollow noopener noreferrer"&gt;Hyphen, Minus sign&lt;/A&gt;)&lt;BR /&gt;_ (&lt;A href="http://en.wikipedia.org/wiki/Underscore" target="_blank" rel="nofollow noopener noreferrer"&gt;Underscore&lt;/A&gt;)&lt;BR /&gt;= (&lt;A href="http://en.wikipedia.org/wiki/%3D" target="_blank" rel="nofollow noopener noreferrer"&gt;Equals&lt;/A&gt;)&lt;BR /&gt;~ (&lt;A href="http://en.wikipedia.org/wiki/~" target="_blank" rel="nofollow noopener noreferrer"&gt;Tilde&lt;/A&gt;)&lt;BR /&gt;` (&lt;A href="http://en.wikipedia.org/wiki/`" target="_blank" rel="nofollow noopener noreferrer"&gt;Grave accent&lt;/A&gt;)&lt;BR /&gt;: (&lt;A href="http://en.wikipedia.org/wiki/Colon" target="_blank" rel="nofollow noopener noreferrer"&gt;Colon&lt;/A&gt;)&lt;BR /&gt;; (&lt;A href="http://en.wikipedia.org/wiki/;" target="_blank" rel="nofollow noopener noreferrer"&gt;Semicolon&lt;/A&gt;)&lt;BR /&gt;&amp;lt; (&lt;A href="http://en.wikipedia.org/wiki/Less_than" target="_blank" rel="nofollow noopener noreferrer"&gt;Less than&lt;/A&gt;, &lt;A href="http://en.wikipedia.org/wiki/Bracket" target="_blank" rel="nofollow noopener noreferrer"&gt;Left Angle Bracket&lt;/A&gt;)&lt;BR /&gt;&amp;gt; (&lt;A href="http://en.wikipedia.org/wiki/Greater_than" target="_blank" rel="nofollow noopener noreferrer"&gt;Greater than&lt;/A&gt;, &lt;A href="http://en.wikipedia.org/wiki/Bracket" target="_blank" rel="nofollow noopener noreferrer"&gt;Right Angle Bracket&lt;/A&gt;)&lt;BR /&gt;, (&lt;A href="http://en.wikipedia.org/wiki/," target="_blank" rel="nofollow noopener noreferrer"&gt;Comma&lt;/A&gt;)&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt; 
&lt;B&gt;&lt;U&gt;Metacharacters/Not Ordinary/Special Characters&lt;/U&gt;&lt;/B&gt; 
&lt;U&gt;&lt;/U&gt; 
&lt;BR /&gt;*These will NOT match themselves 
&lt;BR /&gt;**Unless prefaced by a \ 
&lt;BR /&gt;**Except for the backslash (\) character, which must be prefaced by \\\ to come out as a single backslash. ( 
&lt;A href="http://www.amk.ca/python/howto/regex/regex.html#SECTION000420000000000000000" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.amk.ca/python/howto/regex/regex.html#SECTION000420000000000000000&lt;/A&gt;) 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;&lt;B&gt;Character (Name)&lt;/B&gt;&lt;BR /&gt;$ (&lt;A href="http://en.wikipedia.org/wiki/$" target="_blank" rel="nofollow noopener noreferrer"&gt;Dollar Sign&lt;/A&gt;)&lt;BR /&gt;( (&lt;A href="http://en.wikipedia.org/wiki/(" target="_blank" rel="nofollow noopener noreferrer"&gt;Left Parentheses, Left Round Bracket&lt;/A&gt;)&lt;BR /&gt;) (&lt;A href="http://en.wikipedia.org/wiki/)" target="_blank" rel="nofollow noopener noreferrer"&gt;Right Parentheses, Right Round Bracket&lt;/A&gt;)&lt;BR /&gt;* (&lt;A href="http://en.wikipedia.org/wiki/*" target="_blank" rel="nofollow noopener noreferrer"&gt;Asterisk&lt;/A&gt;)&lt;BR /&gt;? (&lt;A href="http://en.wikipedia.org/wiki/%3F" target="_blank" rel="nofollow noopener noreferrer"&gt;Question Mark&lt;/A&gt;)&lt;BR /&gt;\ (&lt;A href="http://en.wikipedia.org/wiki/\" target="_blank" rel="nofollow noopener noreferrer"&gt;Backslash&lt;/A&gt;)&lt;BR /&gt;^ (&lt;A href="http://en.wikipedia.org/wiki/^" target="_blank" rel="nofollow noopener noreferrer"&gt;Caret&lt;/A&gt;)&lt;BR /&gt; (&lt;A href="http://en.wikipedia.org/wiki/Bracket" target="_blank" rel="nofollow noopener noreferrer"&gt;Right Square Bracket/Brace&lt;/A&gt;)&lt;BR /&gt;{ (&lt;A href="http://en.wikipedia.org/wiki/Bracket" target="_blank" rel="nofollow noopener noreferrer"&gt;Left Curly Bracket/Brace&lt;/A&gt;)&lt;BR /&gt;} (&lt;A href="http://en.wikipedia.org/wiki/Bracket" target="_blank" rel="nofollow noopener noreferrer"&gt;Right Curly Bracket/Brace&lt;/A&gt;)&lt;BR /&gt;| (&lt;A href="http://en.wikipedia.org/wiki/Pipe_(character)" target="_blank" rel="nofollow noopener noreferrer"&gt;Pipe&lt;/A&gt;)&lt;BR /&gt;+ (&lt;A href="http://en.wikipedia.org/wiki/%2B" target="_blank" rel="nofollow noopener noreferrer"&gt;Plus&lt;/A&gt;)&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt; 
&lt;B&gt;&lt;U&gt;Unknown&lt;/U&gt;&lt;/B&gt; 
&lt;U&gt;&lt;/U&gt; 
&lt;BR /&gt;*I don't know which of the two categories, above, the following characters fall into 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;&lt;B&gt;Character (Name)&lt;/B&gt;&lt;BR /&gt;. (&lt;A href="http://en.wikipedia.org/wiki/Full_stop" target="_blank" rel="nofollow noopener noreferrer"&gt;Period, Full stop&lt;/A&gt;)&lt;BR /&gt;? (&lt;A href="http://en.wikipedia.org/wiki/?" target="_blank" rel="nofollow noopener noreferrer"&gt;Single quote, Apostrophe&lt;/A&gt;)&lt;BR /&gt;" (&lt;A href="http://en.wikipedia.org/wiki/" target="_blank" rel="nofollow noopener noreferrer"&gt;Double quote&lt;/A&gt;)&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt; 
&lt;B&gt;&lt;U&gt;Sources of the above information:&lt;/U&gt;&lt;/B&gt; 
&lt;U&gt;&lt;/U&gt; 
&lt;BR /&gt; 
&lt;A href="http://www.regular-expressions.info/reference.html" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.regular-expressions.info/reference.html&lt;/A&gt; 
&lt;BR /&gt; 
&lt;A href="http://regexlib.com/CheatSheet.aspx" target="_blank" rel="nofollow noopener noreferrer"&gt;http://regexlib.com/CheatSheet.aspx&lt;/A&gt; 
&lt;BR /&gt; 
&lt;A href="http://www.amk.ca/python/howto/regex/regex.html" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.amk.ca/python/howto/regex/regex.html&lt;/A&gt; 
&lt;BR /&gt; 
&lt;A href="http://www.fileformat.info/tool/regex.htm" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.fileformat.info/tool/regex.htm&lt;/A&gt;</description>
    <pubDate>Sat, 16 Nov 2024 14:14:40 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-11-16T14:14:40Z</dc:date>
    <item>
      <title>non-alphanumeric characters that aren't special RegExp characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/non-alphanumeric-characters-that-aren-t-special-RegExp/m-p/2227928#M19364</link>
      <description>Can someone please verify for me that I have these characters grouped appropriately, and let me know about the "Unknown" characters (if they are ordinary/allowable or metacharacters/not ordinary/special), please? 
&lt;BR /&gt;I'm trying to figure out what characters we should NOT use (in strings that Talend will be using/calling/whatever) - just to avoid headaches. 
&lt;BR /&gt;Thanks! 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;B&gt;&lt;U&gt;Ordinary/Allowable Characters&lt;/U&gt;&lt;/B&gt; 
&lt;U&gt;&lt;/U&gt; 
&lt;BR /&gt;*Characters that "match themselves" in Regular Expressions 
&lt;BR /&gt;**"Characters other than . $ ^ { } * + ? \ match themselves." ( 
&lt;A href="http://regexlib.com/CheatSheet.aspx" target="_blank" rel="nofollow noopener noreferrer"&gt;http://regexlib.com/CheatSheet.aspx&lt;/A&gt;) 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;&lt;B&gt;Character (Name)&lt;/B&gt;&lt;BR /&gt;@ (&lt;A href="http://en.wikipedia.org/wiki/@" target="_blank" rel="nofollow noopener noreferrer"&gt;Ampersand&lt;/A&gt;)&lt;BR /&gt;# (&lt;A href="http://en.wikipedia.org/wiki/Number_sign" target="_blank" rel="nofollow noopener noreferrer"&gt;Number sign&lt;/A&gt;)&lt;BR /&gt;% (&lt;A href="http://en.wikipedia.org/wiki/%25" target="_blank" rel="nofollow noopener noreferrer"&gt;Percent&lt;/A&gt;)&lt;BR /&gt;- (&lt;A href="http://en.wikipedia.org/wiki/Hyphen" target="_blank" rel="nofollow noopener noreferrer"&gt;Hyphen, Minus sign&lt;/A&gt;)&lt;BR /&gt;_ (&lt;A href="http://en.wikipedia.org/wiki/Underscore" target="_blank" rel="nofollow noopener noreferrer"&gt;Underscore&lt;/A&gt;)&lt;BR /&gt;= (&lt;A href="http://en.wikipedia.org/wiki/%3D" target="_blank" rel="nofollow noopener noreferrer"&gt;Equals&lt;/A&gt;)&lt;BR /&gt;~ (&lt;A href="http://en.wikipedia.org/wiki/~" target="_blank" rel="nofollow noopener noreferrer"&gt;Tilde&lt;/A&gt;)&lt;BR /&gt;` (&lt;A href="http://en.wikipedia.org/wiki/`" target="_blank" rel="nofollow noopener noreferrer"&gt;Grave accent&lt;/A&gt;)&lt;BR /&gt;: (&lt;A href="http://en.wikipedia.org/wiki/Colon" target="_blank" rel="nofollow noopener noreferrer"&gt;Colon&lt;/A&gt;)&lt;BR /&gt;; (&lt;A href="http://en.wikipedia.org/wiki/;" target="_blank" rel="nofollow noopener noreferrer"&gt;Semicolon&lt;/A&gt;)&lt;BR /&gt;&amp;lt; (&lt;A href="http://en.wikipedia.org/wiki/Less_than" target="_blank" rel="nofollow noopener noreferrer"&gt;Less than&lt;/A&gt;, &lt;A href="http://en.wikipedia.org/wiki/Bracket" target="_blank" rel="nofollow noopener noreferrer"&gt;Left Angle Bracket&lt;/A&gt;)&lt;BR /&gt;&amp;gt; (&lt;A href="http://en.wikipedia.org/wiki/Greater_than" target="_blank" rel="nofollow noopener noreferrer"&gt;Greater than&lt;/A&gt;, &lt;A href="http://en.wikipedia.org/wiki/Bracket" target="_blank" rel="nofollow noopener noreferrer"&gt;Right Angle Bracket&lt;/A&gt;)&lt;BR /&gt;, (&lt;A href="http://en.wikipedia.org/wiki/," target="_blank" rel="nofollow noopener noreferrer"&gt;Comma&lt;/A&gt;)&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt; 
&lt;B&gt;&lt;U&gt;Metacharacters/Not Ordinary/Special Characters&lt;/U&gt;&lt;/B&gt; 
&lt;U&gt;&lt;/U&gt; 
&lt;BR /&gt;*These will NOT match themselves 
&lt;BR /&gt;**Unless prefaced by a \ 
&lt;BR /&gt;**Except for the backslash (\) character, which must be prefaced by \\\ to come out as a single backslash. ( 
&lt;A href="http://www.amk.ca/python/howto/regex/regex.html#SECTION000420000000000000000" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.amk.ca/python/howto/regex/regex.html#SECTION000420000000000000000&lt;/A&gt;) 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;&lt;B&gt;Character (Name)&lt;/B&gt;&lt;BR /&gt;$ (&lt;A href="http://en.wikipedia.org/wiki/$" target="_blank" rel="nofollow noopener noreferrer"&gt;Dollar Sign&lt;/A&gt;)&lt;BR /&gt;( (&lt;A href="http://en.wikipedia.org/wiki/(" target="_blank" rel="nofollow noopener noreferrer"&gt;Left Parentheses, Left Round Bracket&lt;/A&gt;)&lt;BR /&gt;) (&lt;A href="http://en.wikipedia.org/wiki/)" target="_blank" rel="nofollow noopener noreferrer"&gt;Right Parentheses, Right Round Bracket&lt;/A&gt;)&lt;BR /&gt;* (&lt;A href="http://en.wikipedia.org/wiki/*" target="_blank" rel="nofollow noopener noreferrer"&gt;Asterisk&lt;/A&gt;)&lt;BR /&gt;? (&lt;A href="http://en.wikipedia.org/wiki/%3F" target="_blank" rel="nofollow noopener noreferrer"&gt;Question Mark&lt;/A&gt;)&lt;BR /&gt;\ (&lt;A href="http://en.wikipedia.org/wiki/\" target="_blank" rel="nofollow noopener noreferrer"&gt;Backslash&lt;/A&gt;)&lt;BR /&gt;^ (&lt;A href="http://en.wikipedia.org/wiki/^" target="_blank" rel="nofollow noopener noreferrer"&gt;Caret&lt;/A&gt;)&lt;BR /&gt; (&lt;A href="http://en.wikipedia.org/wiki/Bracket" target="_blank" rel="nofollow noopener noreferrer"&gt;Right Square Bracket/Brace&lt;/A&gt;)&lt;BR /&gt;{ (&lt;A href="http://en.wikipedia.org/wiki/Bracket" target="_blank" rel="nofollow noopener noreferrer"&gt;Left Curly Bracket/Brace&lt;/A&gt;)&lt;BR /&gt;} (&lt;A href="http://en.wikipedia.org/wiki/Bracket" target="_blank" rel="nofollow noopener noreferrer"&gt;Right Curly Bracket/Brace&lt;/A&gt;)&lt;BR /&gt;| (&lt;A href="http://en.wikipedia.org/wiki/Pipe_(character)" target="_blank" rel="nofollow noopener noreferrer"&gt;Pipe&lt;/A&gt;)&lt;BR /&gt;+ (&lt;A href="http://en.wikipedia.org/wiki/%2B" target="_blank" rel="nofollow noopener noreferrer"&gt;Plus&lt;/A&gt;)&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt; 
&lt;B&gt;&lt;U&gt;Unknown&lt;/U&gt;&lt;/B&gt; 
&lt;U&gt;&lt;/U&gt; 
&lt;BR /&gt;*I don't know which of the two categories, above, the following characters fall into 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;&lt;B&gt;Character (Name)&lt;/B&gt;&lt;BR /&gt;. (&lt;A href="http://en.wikipedia.org/wiki/Full_stop" target="_blank" rel="nofollow noopener noreferrer"&gt;Period, Full stop&lt;/A&gt;)&lt;BR /&gt;? (&lt;A href="http://en.wikipedia.org/wiki/?" target="_blank" rel="nofollow noopener noreferrer"&gt;Single quote, Apostrophe&lt;/A&gt;)&lt;BR /&gt;" (&lt;A href="http://en.wikipedia.org/wiki/" target="_blank" rel="nofollow noopener noreferrer"&gt;Double quote&lt;/A&gt;)&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt; 
&lt;B&gt;&lt;U&gt;Sources of the above information:&lt;/U&gt;&lt;/B&gt; 
&lt;U&gt;&lt;/U&gt; 
&lt;BR /&gt; 
&lt;A href="http://www.regular-expressions.info/reference.html" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.regular-expressions.info/reference.html&lt;/A&gt; 
&lt;BR /&gt; 
&lt;A href="http://regexlib.com/CheatSheet.aspx" target="_blank" rel="nofollow noopener noreferrer"&gt;http://regexlib.com/CheatSheet.aspx&lt;/A&gt; 
&lt;BR /&gt; 
&lt;A href="http://www.amk.ca/python/howto/regex/regex.html" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.amk.ca/python/howto/regex/regex.html&lt;/A&gt; 
&lt;BR /&gt; 
&lt;A href="http://www.fileformat.info/tool/regex.htm" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.fileformat.info/tool/regex.htm&lt;/A&gt;</description>
      <pubDate>Sat, 16 Nov 2024 14:14:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/non-alphanumeric-characters-that-aren-t-special-RegExp/m-p/2227928#M19364</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: non-alphanumeric characters that aren't special RegExp characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/non-alphanumeric-characters-that-aren-t-special-RegExp/m-p/2227929#M19365</link>
      <description>&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;Can someone please verify for me that I have these characters grouped appropriately, and let me know about the "Unknown" characters (if they are ordinary/allowable or metacharacters/not ordinary/special), please?&lt;BR /&gt;I'm trying to figure out what characters we should NOT use (in strings that Talend will be using/calling/whatever) - just to avoid headaches.&lt;BR /&gt;Thanks!&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;pleaseeeee?</description>
      <pubDate>Mon, 22 Sep 2008 20:11:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/non-alphanumeric-characters-that-aren-t-special-RegExp/m-p/2227929#M19365</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-09-22T20:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: non-alphanumeric characters that aren't special RegExp characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/non-alphanumeric-characters-that-aren-t-special-RegExp/m-p/2227930#M19366</link>
      <description>Hi,&lt;BR /&gt;your groups are correct. &lt;BR /&gt;For the last three signs: "." (Period, Full stop) =&amp;gt; special  (matches any character but also will match itself)&lt;BR /&gt;The other two do not have any special function in regex.&lt;BR /&gt;Bye&lt;BR /&gt;Volker</description>
      <pubDate>Mon, 22 Sep 2008 20:33:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/non-alphanumeric-characters-that-aren-t-special-RegExp/m-p/2227930#M19366</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-09-22T20:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: non-alphanumeric characters that aren't special RegExp characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/non-alphanumeric-characters-that-aren-t-special-RegExp/m-p/2227931#M19367</link>
      <description>ok, cool - just wanted to make sure cause I saw conflicting information about those three characters (between "regular" regular expressions and then java regular expressions)</description>
      <pubDate>Mon, 22 Sep 2008 20:42:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/non-alphanumeric-characters-that-aren-t-special-RegExp/m-p/2227931#M19367</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-09-22T20:42:54Z</dc:date>
    </item>
  </channel>
</rss>

