當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


p5.js nfc()用法及代碼示例


p5.j​​s中的nfc()函數用於將輸入數字(整數或浮點數)格式化為字符串,並放置適當的逗號(,)來標記1000的單位。它包含兩個版本,第一個用於格式化整數。第二個用於格式化整數數組。

用法:

nfc( Num, Right )

參數:該函數接受上述和以下描述的兩個參數:


  • Num:此參數保存要格式化的數字或字符串或數字數組,並放置適當的逗號(,)以標記1000單位。
  • Right:這是一個正數,表示位數應在小數點的右側。

返回值:它返回格式化的字符串。

以下程序說明了p5.js中的nfc()函數:

示例1:本示例使用nfc()函數將輸入數字格式化為字符串,並放置適當的逗號來標記1000的單位。

function setup() {  
   
    // Creating Canvas size 
    createCanvas(450, 200);  
}  
  
function draw() {  
       
    // Set the background color  
    background(220);  
     
    // Initializing the Numbers 
    let num1 = 123456;  
    let num2 = 15682.398;  
    let num3 = .5;  
    let num4 = .05;  
    let num5 = 0;  
    let num6 = 12341516.867;  
      
    // Calling to nfc() function 
    let A = nfc(num1, 4); 
    let B = nfc(num2, 5); 
    let C = nfc(num3, 3); 
    let D = nfc(num4, 2); 
    let E = nfc(num5, 4); 
    let F = nfc(num6, 5); 
      
    // Set the size of text  
    textSize(16);  
       
    // Set the text color  
    fill(color('red'));  
     
    // Getting formatted String 
    text("Formatted String is: " + A, 50, 30); 
    text("Formatted String is: " + B, 50, 60); 
    text("Formatted String is: " + C, 50, 90); 
    text("Formatted String is: " + D, 50, 110); 
    text("Formatted String is: " + E, 50, 140); 
    text("Formatted String is: " + F, 50, 170); 
} 

輸出:

示例2:本示例使用nfc()函數將輸入數字格式化為字符串,並放置適當的逗號來標記1000的單位。

function setup() {  
   
    // Creating Canvas size 
    createCanvas(450, 90);  
}  
  
function draw() {  
       
    // Set the background color  
    background(220);  
     
    // Initializing the array of numbers 
    let num1 = [123456, 0, .2];  
    let num2 = [126789.53, 6.4, 2.0894];  
      
    // Calling to nfc() function 
    let A = nfc(num1, 4); 
    let B = nfc(num2, 3); 
      
    // Set the size of text  
    textSize(16);  
       
    // Set the text color  
    fill(color('red'));  
     
    // Getting formatted String 
    text("Formatted String is: " + A, 50, 30); 
    text("Formatted String is: " + B, 50, 60); 
} 

輸出:

參考: https://p5js.org/reference/#/p5/nfc



相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 p5.js | nfc() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。