Recent content by Alessandro Giraldi

  1. A

    Regex

    Hi MajP, Yes, i work in textile business, i am Technic of fabbrics and this expression i Need to calculate the colors of the yarns i Need to put in warp or in loom machine to make a design. For ex. If you buy a garment with a smal design like attached, you have to make 4A4B to develope this...
  2. A

    Regex

    hi MajP, now is perfect, i don' t know how i can say tk u. grazie 1000
  3. A

    Regex

    Hi MajP, no, it is not correct, 2A2B2(2a2b)3a3b the result should be A=9 - B=9 i have tried your demo but there is same problem as me. ciao
  4. A

    Regex

    Sorry MajP, i am still here.... :) so i have tried this case : 1 case) 2A2B A=0 B=0 TOTAL = 0 NOT OK 2 case) 2A2B2(2A2B) A=4 B=4 TOTAL = 8 NOT OK 3 case) 2A2B2(2A2B)3A3B A=7 B=7 TOTAL =14 NOT OK 4 case) 2(2A2B)3A3B A=7 B=7 TOTAL = 14 OK 5 case) 2(2A2B)3A3B2(2A2B) A=11 B=11 TOTAL = 22 OK I...
  5. A

    Regex

    tk u, now work perfectly. grazie
  6. A

    Regex

    yes i leave in italy, Prato, near florence.
  7. A

    Regex

    ok now is correct tk u so much... grazie 1000000 Public Function GetOrdito(strOrdito As String) As t_Ordito Dim Ordito As t_Ordito Dim character As String Dim strnumberBefore As String Dim numberBefore As Integer Dim distributeNumber As Integer Dim distribute As Boolean Dim i As...
  8. A

    Regex

    Tk u very much, this code is ok but if i have this case (ex. 3(2a2b) doesn' t work, the result is A=4 and B=4. do you know why? tk u
  9. A

    Regex

    Sorry Hi and tk u very much, can i ask how can help pass the result to label
  10. A

    Regex

    Hi, How can i pass the result ti panel?
  11. A

    Regex

    sorry this is the correct table
  12. A

    Regex

    Hi all, i have tried to put img about my table and what i would like to do in the mask. my system is access 2016 and the code i need to put under vba access. the column is "Nota Ordito" and the column "Lettera" rappresent the value i have to give for each letter in the string "Nota Ordito". i...
  13. A

    Regex

    Hi, Tk u for tour answer. No, i mean vba code ti calculate One string every time could be differenti. I work in textile Sector. Some time the expression can be like 2(2a2b) and the result must be 4a and 4b and the Total of the expression Is 8 or some time could be 2(2a2b2c)2a5b6c3(3c3b) In every...
  14. A

    Regex

    Val(str) * Val(Mid(str, InStr(str, "(") + 1)) * Val(Mid(str, InStr(str, "(") + 1 + Len(CStr(Val(Mid(str, InStr(str, "(") + 1)))) + 1)) yes this code is ok for this expression 2(2a2b), but it find only = 8 and not how many a and b ...anyway if i change the expression as 2(2a2b)2c2a2b4(2c2d) the...
  15. A

    Regex

Top Bottom