Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6072437
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:09:37+00:00 2026-05-23T10:09:37+00:00

I need to write a method doing a formatting of numeric value given a

  • 0

I need to write a method doing a formatting of numeric value given a pattern as one of the parameter, in actionscript.

For example:

a. 12345.00 using format pattern ###,###.## resulting 12,345.00
b. 12345.00 using format pattern ##,##,##.## resulting 1,23,45.00

Initially, I thought that NumberFormatter able to do that, but after reading documentation, it seems you are not able to accept pattern.

Any idea how to implement this ? I’m using Flex 4.1

UPDATE: I made an advanced formatter based on the sample created by Jason. You can download it here : link

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T10:09:38+00:00Added an answer on May 23, 2026 at 10:09 am

    UPDATE:
    After a bit more thought on this custom formatter class, I’ve decided to update it a bit. You can see the updated CustomPatternFormatter class here.

    The updated class adds:

    • The ability to pass any string, not just numeric values.
    • A flag to ensure the length of the input string matches the length of the format pattern.

    I hope this helps!

    Original answer:

    You’ll have to create custom Formatter to handle this. Here’s something I threw together real fast. You may have to adjust it to fit your situation.

    CustomNumericFormatter.as

    package 
    {
        // formatters/myFormatter/SimpleFormatter.as
        import mx.formatters.Formatter;
        import mx.formatters.SwitchSymbolFormatter;
    
            public class CustomNumericFormatter extends Formatter 
            {
                private static const VALID_PATTERN_CHARS:String = "#,.";
    
                // Declare the variable to hold the pattern string.
                public var formatString:String = "";
    
                // Constructor
                public function CustomNumericFormatter() {
                    // Call base class constructor.
                    super();
                }
    
                // Override format().
                override public function format(value:Object):String {
                    if (error)
                        error = null;
    
                    // If value is null, or empty String just return "" 
                    // but treat it as an error for consistency.
                    // Users will ignore it anyway.
                    if (!value || (value is String && value == ""))   
                    {
                        error = "0 Length String";
                        return "";
                    }
    
                    // -- value --              
                    // 1. Validate value - must be a nonzero length string.
                    if (!value || String(value).length == 0 || isNaN(Number(value)))
                    {
                        error = "Invalid object type passed to formatter";
                        return "";
                    }
    
                    // 2. If the value is valid, format the string.
                    var fStrLen:int = 0;
                    var letter:String;
                    var n:int;
                    var i:int;
                    var v:int;
    
                    // Make sure the formatString is valid.
                    n = formatString.length;
                    for (i = 0; i < n; i++)
                    {
                        letter = formatString.charAt(i);
                        if (letter == "#")
                        {
                            fStrLen++;
                        }
                        else if (VALID_PATTERN_CHARS.indexOf(letter) == -1)
                        {
                            error = "You can only use the following symbols in the formatString: # , .";
                            return "";
                        }
                    }
    
                    var returnString:String = "";
                    var vStr:String = String(value).replace(".", "").split("").reverse().join("");
                    var fStr:Array = formatString.split("").reverse();
                    var fChar:String;
    
                    for (v = 0; v < vStr.length; v++)
                    {   
                        if (fStr.length > 0)
                        {
                            do 
                            {
                                fChar = fStr.shift();
    
                                if (fChar != "#")
                                    returnString += fChar;
    
                            } while (fChar != "#" && fStr.length > 0);
                        }
    
    
                        returnString += vStr.charAt(v);
                    }   
    
                    return returnString.split("").reverse().join("");
                }
            }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to write an extension method on a byte[]. Is that possible?
I need to write a unit test for a method that will print a
I need to write a Java Comparator class that compares Strings, however with one
I need to write a web application using SQL Server 2005, asp.net, and ado.net.
I need to write a method that returns whether or not a Boolean is
I need to write some methods for loading/saving some classes to and from a
I need write an update statement that used multiple tables to determine which rows
I need to write a program used internally where different users will have different
I need to write a Delphi application that pulls entries up from various tables
I need to write a java script. This is supposed to validate if the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.