代码搜索:formatting
找到约 1,526 项符合「formatting」的源代码
代码结果 1,526
www.eeworm.com/read/127767/14336097
txt e322. formatting and parsing a date using default formats.txt
Every locale has four default formats for formatting and parsing dates. They are called SHORT, MEDIUM, LONG, and FULL. The SHORT format consists entirely of numbers while the FULL format contains most
www.eeworm.com/read/127767/14336233
txt e314. formatting and parsing locale-specific currency.txt
// Format
Locale locale = Locale.GERMANY;
String string = NumberFormat.getCurrencyInstance(locale).format(123.45);
// 123,45 DM
locale = Locale.CANADA;
string = NumberFo
www.eeworm.com/read/127767/14337771
txt e315. formatting and parsing a locale-specific percentage.txt
// Format
Locale locale = Locale.CANADA;
String string = NumberFormat.getPercentInstance(locale).format(123.45);
// 12,345%
// Parse
try {
Number number = Numbe
www.eeworm.com/read/127767/14337964
txt e083. parsing and formatting a number into binary, octal, and hexadecimal.txt
int i = 1023;
// Parse and format to binary
i = Integer.parseInt("1111111111", 2); // 1023
String s = Integer.toString(i, 2); // 1111111111
// Parse and format to o
www.eeworm.com/read/186078/8961423
pci 53338811.pci
%! Detailed register description file for PCICFG.EXE by Ralf Brown
%!
%! Filename 53338811.PCI = Vendor 5333h, Device 8811h -- S3 Trio64V+
%! Last Edit 9/27/97 by Ralf Brown
%!
[See file BLANK.
www.eeworm.com/read/283325/9028596
lib floatlib.lib
floatLib {floating-point formatting and scanning library } floatLib {floatLib} {VxWorks API Reference} {OS Libraries} {} {}
www.eeworm.com/read/373348/9461881
txt 06.txt
CS 1355
Introduction to Programming in C
Thursday 2006.9.28 (Week 3)
Lecture notes (at http://r638-2.cs.nthu.edu.tw/C/notes/06.txt)
Chapter 3: Structured Program Development in C (cont'd)
Con
www.eeworm.com/read/366065/9834222
test format.test
# Commands covered: format
#
# This file contains a collection of tests for one or more of the Tcl
# built-in commands. Sourcing this file into Tcl runs the tests and
# generates output for errors.