Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Here is the regex for Search:</p> <pre><code>(\d{4}\.\d{2}\.\d{2}\s\d{2}:\d{2},[^,]*,\D*)\s(\d{5},.*) </code></pre> <p>And the regex for replace</p> <pre><code>$1,$2 </code></pre> <p><strong>Explanation:</strong></p> <p><em>The Regex for search</em></p> <pre><code>( Begin a numbered capture group (Nameless and accessed via index) \d{4} Means: capture digits with exact 4 repititions \. Capture a dot (You have to escape it with a backslash, if not it means capture all characters except linefeed) \d{2} Capture 2 digits \. Capture a dot \d{2} Capture 2 digits \s Capture 1 whitespace \d{2} Capture 2 digits : Capture a colon \d{2} Capture 2 digits , Capture a comma [^,]* Capture everything except a comma with 0 to infinity repititions , Capture a comma \D* Capture everything except a digit with 0 to infinity repititions ) Close first capture group \s Capture a whitespace ( Begin a numbered capture group \d{5} Capture 5 digits , Capture a comma .* Capture everything except a linebreak ) Close second capture group </code></pre> <p><em>The Regex for Replace</em></p> <pre><code>$1 Insert capture group number 1 , Insert a comma $2 Insert capture group number 2 </code></pre> <p>I hope that explains a little bit the (helpful but sometimes confusing) "magic" of regular expression. A good tool to design and test regular expressions is called Expresso and can be find <a href="http://www.ultrapico.com/Expresso.htm" rel="nofollow">here</a>. If you want an online help and regex library with expression tester, you'll find it <a href="http://regexlib.com" rel="nofollow">here</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload