<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    Hi Richard,<br>
    it's perfect to use [367] instead of [3,6,7]<br>
    I've tried to put the expression under single quotes and doesn't
    work, I don't know why. Maybe I should have use double quotes.<br>
    <br>
    Thanks!!<br>
    Joan<br>
    <br>
    <div class="moz-cite-prefix">El 2013-01-18 17:49, Richard Fuchs
      escribió:<br>
    </div>
    <blockquote cite="mid:50F97D1D.10308@sipwise.com" type="cite">
      <pre wrap="">Hi,

On 01/18/13 11:43, Joan Cifre (ibred) wrote:
</pre>
      <blockquote type="cite">
        <pre wrap="">Hi all,
I have to import a csv with billing fees and I have a regular expresion
like this
^3480[3,6,7][0-1]+$

The problem I have is that when I import it, the "," of the regex is
confused ith the "," of the csv. Any idea to avoid this?
</pre>
      </blockquote>
      <pre wrap="">
Bracket expressions in regular expressions don't need a comma separator.
If you want to match a single 3, 6 or 7 digit, you can just use [367].

Alternatively, putting the whole expression under "quote" in the CSV
should also work.

cheers

</pre>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
Spce-user mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Spce-user@lists.sipwise.com">Spce-user@lists.sipwise.com</a>
<a class="moz-txt-link-freetext" href="http://lists.sipwise.com/listinfo/spce-user">http://lists.sipwise.com/listinfo/spce-user</a>
</pre>
    </blockquote>
    <br>
  </body>
</html>