Replace the comma with a period in a text layer expression

Hello!

I need to make a simple counter to 0 billion, so I found this expression that works perfectly:

Start code

startTime = 0; seconds

endTime = 5; seconds

beginCount = 0;

endCount = 9700698977;

hasCommas = true;

function addCommas (s) {}

If (s.length < = 3)

return s;

on the other

Return s.substring (0, 3) + ', ' + addCommas (s.substring (3, s.length));

}

function reverse (s) {}

newStr = "";

for (i = s.length - 1; i > = 0; i--)

newStr += s.charAt (i)

return newStr;

}

Val = Math.round (linear (time, startTime, endTime, beginCount, endCount));

If (hasCommas)

reverse (addCommas (reverse (val + "")))

on the other

Val

end of the code

The problem is that I need to change the commas with pins to look like 9.700.698.977, someone knows how to do?

Just change this line:

Return s.substring (0, 3) + ', ' + addCommas (s.substring (3, s.length));

to do this:

Return s.substring (0, 3) + '. ' + addCommas (s.substring (3, s.length));

Dan

Tags: After Effects

Similar Questions

  • replace the comma with point to a string

    Hello

    I tried to replace the comma in the chain attached to a point, but I can't make it work. What I am doing wrong?

    Calle cordially

    You have a space after the comma in your string constant.

  • Replace the comma with the liquid matrix code

    Hey people,

    I might not even wrong terminology, but I'm stumped on this question.

    I have a picture of an element of app web listbox that out puts the following liquid on the DETAILS page:

    "Fuel products': 'Diesel (high-speed), Premium ULP, ULP regularly."

    I am willing to spend the commas in the table with an icon of fonts, for example:

    < span class = "find the fa - fa" > < / span >

    I tried using the 'Replace' filter but it does not work. And I tried to use "capture", but there is clearly a funky coding that I completely missed. Help, please...

    {capture check %} < span class = "find the fa - fa" > < / span > {% endcapture}}

    {{it. ["Products of fuel"] | {{replace: ",", "{{tick}}"}}

    See you soon

    James - RelianceIT

    Hello

    Try {{this. [' Fuel products] | {{replace: "," check mark}}

    and let us know if it works.

    Thank you

    M

  • replace the comma with point

    Hi all

    I am getteing mad with the following problem and need your help.
    I work in a PDF form - including a table. The values in this table create a datamatrix. It works fine for now.
    My question: the values in the array are numbers like 12.2 but also 12 or 9 but maximum two digits before the '. '. (dot). Separator character must be a '. '. In Germany there is the ',' (comma) instead of '. ' on the numeric keypad.
    For better usability, it would be nice to have a java script that replaces onBlur all ',' with a '. '. So I don't have to change the keyboard to English language.

    Is this possible and if so, how?

    I'm a noob absolutely on javascript, so please be patient and don't expect any specific knowledge.

    What I tried (menu is translatet from the German version, I don't know if this is correct):

    onBlur.replace (",",".");

    I put this in (right click on the form)-> properties-> action->

    Add the action: at the exit of the mouse

    Choose the action: run JavaScript

    Click 'Add '.

    Then I copied the terminus of the top in the window opening. Ready (at least that was my thought...)

    He said does not work, now I nedd your help.

    Thank you for your advice, your help and your time.

    Adobe Acrobat XI (in German) on Windows 7 64 bit (also German).

    ***************SOLVED**********************

    The solution was much easier than expected:

    When you open 'Properties' by right-clicking on the form, go to the 'validation', NOT 'action' (make sure you are in forms editing mode: 'tools'-> 'forms'-> 'edit')

    then choose 'execute user-defined script' and click 'change'.

    type the following line:

    Event.Value = event.value.replace (/ a, / g, ".");

    Click 'OK' and then 'close '.

    Then you are finished. Now, if you leave the Acrobat form field checks if there is a comma and replace it with a point.

    For me, it was the best way to make it work.

    ***************SOLVED**********************

    ***************GELÖST**********************

    Die Lösung war easier als gedacht.

    SMS "Akbulak" man mit einem Rechtsklick auf das Formular, muss man ",Validierung" und nicht 'Promotions' Park. (man muss im Formulareditierungsmodus breast: "Tools"-> "Von"-> "Bearbeiten")

    Dann unter "Benutzerdefiniertes Validierungsskript implement"auf"Berabeiten" klicken.

    IM Editorfenster following line typing:

    Event.Value = event.value.replace (/ a, / g, ".");

    Den zu über back 'OK' und 'Schließen' Akbulak

    War das Nun ersetzt Acrobat im Formularfeld jedes durch einen Punkt Komma.

    ***************GELÖST**********************

  • Replace the comma with space - we can do it without REGEXP?

    11 GR 2 DB.

    Can you replace comma with a space without using REGEXP?
    Sample String: 'To,Replace,,Comma(s),,,,with space,,,'
    Expected output:'To Replace Comma(s) with space '

    884476 wrote:
    11 GR 2 DB.

    Can you replace comma with a space without using REGEXP?

    You could do it with REPLACE nested...

    select    replace(
                replace(
                  replace(
                      'To,Replace,,Comma(s),,,,with space,,,',',','#$'
                         ),
                      '$#',''
                       ),
                     '#$',' '
                     ) str
    from dual;
    
    STR
    -------------------------------
    To Replace Comma(s) with space 
    
  • Replace the comma with | in a column

    Hi all

    My requirement is like this:
    In a column, I need to replace every third comma with | symbol.
     
    eg:
    1,Animesh,1234,2,Tripathi,4321,3,Oracle,2345.....(and so on)
     
    Desired output:
    1,Animesh,1234||2,Tripathi,4321||3,Oracle,2345....
    Please help me.
    -
    Concerning
    Animesh

    Hello

    Here's one way:

    WITH mydata AS
    (
       SELECT '1,Animesh,1234,2,Tripathi,4321,3,Oracle,2345' txt FROM DUAL
    )
    SELECT REGEXP_REPLACE (txt, '(([^,]*,){2}[^,]*)(,)', '\1||') txt
      FROM mydata;
    
    TXT
    ----------------------------------------------
    1,Animesh,1234||2,Tripathi,4321||3,Oracle,2345
    

    Kind regards.
    Al

    Published by: Alberto Faenza December 11, 2012 11:51
    Simplified regular expression

  • Reg: Replace the comma with newline

    Hi Experts,

    I am a little confused and stuck with this... Tried many things but not able to do it properly.
    Any help is appreciated... TIA.
    -- "Input"
    with xx as(
        select 'x,a,(b,c),(d,e),f,g' x
        from dual
    )
    select * from xx;
    
    -- "Expected Output"
    x
    a
    (b,c)
    (d,e)
    f
    g
    Database version: Oracle 10.2

    Vanessa B.

    I gave you this already above.

    with xx as(
        select 'x,a,(b,c),(d,e),f,g' x
        from dual
    )
    , xxx as (
     select
       regexp_replace(x, '(\([^,]+),([^,]+\))', '\1'||chr(1)||'\2') x
     from xx
    )
    
    select
     replace (
       regexp_replace(x, ',', chr(10))
      ,chr(1)
      , ','
     ) x
    from xxx
    
  • Chr (44) to replace the commas separating the arguments of a function?

    In Oracle SQL, it is possible to replace the commas between the arguments of the function with chr (44)?  A simple example with substr():

    substr ("yyyy", 1, 1) - the result is 'a '.

    vs

    substr ("aaaa" chr (44) 1 chr (44) 1)-this should also return 'a '.

    Is there a way to make the second example works the same way as the first?  I tried different techniques escaping, string concat, etc., and I failed.  Is there a method to replace the comma (",") the character of the way I'm looking for or is this impossible?

    Thank you

    N °

    The Analyzer seeks commas, not for other things you as a human being assimilated by a comma.

  • Can satellite M70-159 - I replace the motherboard with another?

    Hello!
    The model of the M70-159-card mother K000033840 can replace another motherboard with a number K000033860?

    Thank you.

    I put t know if it s possible because I m not a technician for laptop.
    Normally, you should only replace the motherboard with the same.

    I put t know if it works. Contact a local ASP and ask for a technician. They know where the other is, and if it would work.

  • Please replace the battery with the correct lenovo battery

    I have a Thinkpad L530 and bought a new battery and when I start it up I get this message (this battery installed is not supported by this system and will not charge.) Please replace the battery with the battery correct lenovo for this system

    buy a real battery. Press ESC to continue but the battery won't charge)

    I don't want to buy a new battery to another.

    I understand that this can be changed in the bios but don't know how.

    Now my battery is dead, and I'm unable to recharge it again.

    Ideas please


  • Replace the comma between quotation MARK

    Hello

    Here, I want to replace the comma between CITATION to "#", but my boss does not work...

    could someone help me please?

    SELECT

    REGEXP_REPLACE ("Mike" JOHN, KELLY "Marc")

    "" [^,] * (EN) [^,] * "', ' #»(, 1, 1) AS A RESULT"

    DOUBLE;

    Maybe

    Select ' Mike, Michel 'JOHN, KELLY' Marc' orig.

    regexp_replace (' Mike, Michel 'JOHN KELLY' Marc', '"(\w+), (\w+)" ', '"\1#\2" ' ") new_val

    of the double

    ORIG NEW_VAL
    Mike, 'JOHN KELLY' of Michel Marc Mike, Michel 'JOHN #KELLY' Marc

    Concerning

    Etbin

  • How to replace the paragraph with a space mark

    Hello

    I received the contents of a manual in raster format, but each line of text ends with a paragraph mark. How to replace the paragraph with a mark space otherwise than by hand?

    In Word, this is pretty easy, but I don't see not any provision for it in the search box on 7.2 Frame.

    Yours,

    Michael F

    ========

    \p = end of paragraph

    \P = beginning of paragraph

    See: Help > keyboard shortcuts > keys for the search and replace

  • Replace the hyphen with line break

    Hello
    In my application, I want to replace the hyphen with line break
    . I use APEX4.0
    I use the following javascript code:

    < html >
    < script type = "text/javascript" >
    function test().
    {
    var visitorName = "< br / > ';
    var myOldString = "& P2_SI.";
    var myNewString = myOldString.replace (/-/ g, visitorName);
    }
    < /script >
    < / html >

    I have no idea how the get executed and make javascript work... can anyone help?

    Suzi,

    I changed the code for page 1:
    I don't know that is what you want, but it works :)
    That's what I did

    1. deleted tags
    2 P1_RESULTS element created to keep results
    3. $x_Value ("P1_RESULTS", myNewString) occasion; to fill a new element

    You cannot set the value P1_S2I in dynamic Action (onchange) - it looks like the code calls herself and kills the browser

    Lev

    Published by: the on August 27, 2010 11:49

    Published by: the on August 27, 2010 11:53

  • replace the characters with accent with their basic letter

    Hello

    I need to replace the characters with an accent with their basic letter

    a = > has
    n = > n

    I use classes of equivalence as [[= n =]] in regexp_replace, but then I need to call it for each letter. Is there a simpler way?

    Concerning
    Marcus

    Given that I only have the names to convert INITCAP

    It seems that you can use the binary case-insensitive or accent sorting to get the results you want so:

    SQL> with t as (
     select 'ñÉäßÑéàâ' str from dual
    )
    --
    --
    select str, utl_raw.cast_to_varchar2((nlssort(str, 'nls_sort=binary_ai'))) str2 from t
    /
    STR      STR2
    -------- ---------------
    ñÉäßÑéàâ neassneaa
    1 row selected.
    
  • Replace the spaces with a sign +.

    Hello

    On of my items, I have a text... I want to replace the spaces with a plus (+) sign... something linke this


    Select
    text_field,
    Function_replace (text_field, "", "+") new_field
    Of
    table_A

    Like this?

    select regexp_replace('Please replace, me','[ ,-]+','+') replaced_txt from dual;
    
    REPLACED_TXT
    -----------------
    Please+replace+me
    
    Elapsed: 00:00:00.00
    

    HTH,
    Prazy

Maybe you are looking for

  • No network after controller updated windows system 8

    I refreshed my cause stupid windows 8 I had strange things pop - up on the screen, so I refreshed the system. Now I can't connect to Internet and miss me all my emails, contacts, Favorites, photos and else who knows what. I want answers to everything

  • Can I use computer as a phone headset?

    Don't the M7 integrated bluetooth support profile helmet that I would use computers portable speakers and an excellent microphone as a hands-free for my cell phone with Mobile Agent software open-source of the float. I have managed to set up a COM po

  • loss of wireless with windows xp

    I reinstalled Windows XP and that you can get is a wireless network connection.  Whenever I try to choose a wireless connection to connect to my wireless linksys router, I get a window box that says: If you want Windows to configure this wireless con

  • sugest a 160gig hard drive for el3103

    can anyone sugest a compatible 160 more hard drive for computer laptop el 3103, at the time where it has a hard drive ata 80gig, want more disk space.

  • How can I uninstall several programs at once? (Feature request)

    Hello I just installed package 12 small programs installed in my Windows 7 installation. Is there a way to uninstall them all at once? In "Programs and features" I would like to be able to select multiple programs, right click, select "Uninstall" and