ASCIIを含む例文一覧と使い方
該当件数 : 400件
Unicode object constructor.Setting encoding to NULL causes the default encoding to be used which is ASCII.例文帳に追加
encoding を NULL にすると、デフォルトエンコーディングである ASCIIを使います。 - Python
Checks for an ASCII alphanumeric character; it is equivalent to"isalpha(c) or isdigit(c)". 例文帳に追加
ASCII 英数文字かどうかを調べます; "isalpha(c) or isdigit(c)" と等価です。 - Python
Checks for an ASCII alphabetic character; it is equivalent to"isupper(c) or islower(c)". 例文帳に追加
ASCII アルファベット文字かどうかを調べます; "isupper(c) or islower(c)" と等価です。 - Python
Checks for an ASCII decimal digit, "0" through"9". 例文帳に追加
ASCII 10 進数字、すなわち "0" から "9" までの文字かどうかを調べます。 - Python
Utilities for working with ASCII characters, regardless of your locale settings.例文帳に追加
ロケール設定に関わらず ASCII 文字を扱うためのユーティリティ。 - Python
Starting with2.3, all ASCII punctuation is allowed in passwords. 例文帳に追加
注意:利用可能なパスワードの文字セットは、ASCIIのサブセットのみです。 - Python
This means that, with ASCII, each character is represented by a single byte.例文帳に追加
これは、ASCIIでは、各文字はシングルバイトで表すことを意味します。 - Gentoo Linux
checks whether c is a 7-bit unsigned char value that fits into the ASCII character set. 例文帳に追加
c が、ASCII文字セットに合致する 7ビットのunsigned charであるかを調べる。 - JM
The following table displays the characters in ISO 8859-1 (Latin-1), which are printable and unlisted in the ascii (7) 例文帳に追加
以下の表は ISO 8859-1 (Latin-1) の表示可能な文字のうちascii (7) - JM
The following table displays the characters in ISO 8859-15 (Latin-9), which are printable and unlisted in the ascii (7) 例文帳に追加
以下の表は ISO 8859-15 (Latin-9) の表示可能な文字のうちascii (7) - JM
The following table displays the characters in ISO 8859-16 (Latin-10), which are printable and unlisted in the ascii (7) 例文帳に追加
以下の表は ISO 8859-16 (Latin-10) の表示可能な文字のうちascii (7) - JM
The following table displays the characters in ISO 8859-2 (Latin-2), which are printable and unlisted in the ascii (7) 例文帳に追加
以下の表は ISO 8859-2 (Latin-2) の表示可能な文字のうちascii (7) - JM
The following table displays the characters in ISO 8859-9 (Latin-5), which are printable and unlisted in the ascii (7) 例文帳に追加
以下の表は ISO 8859-9 (Latin-5) の表示可能な文字のうちascii (7) - JM
Do ASCII output of this parameter with a field with of 2 d 例文帳に追加
パラメータを 2 桁の数字として ASCII 出力する (printf の %2d と同じ意味)d - JM
I figured one of you guys kept an ascii table lying around, and I was right.例文帳に追加
誰がASCII表を 持ってるか考えてみた ぼくは正しかった - 映画・海外ドラマ英語字幕翻訳辞書
By default, includes all ASCII alphanumerics and underscore.例文帳に追加
標準では、全ての ASCII 英数字およびアンダースコアが入っています。 - Python
Specifies the bytes,which are not necessarily ASCII or null-terminated. 例文帳に追加
これは必ずしも ASCII でなくてもよいし、NULL で終わる必要もない。 - XFree86
For instance, the convention for text files is lines of ASCII characters separated by a single newline character (the ASCII line-feed character), but the kernel knows nothing about this convention. 例文帳に追加
たとえば、テキストファイルは改行文字 (ASCII LF 文字) で区切られたASCII 文字の行の集まりですが、 カーネルはそのような構造を関知しません。 - FreeBSD
the standard ASCII character set 例文帳に追加
標準的なアスキー文字集合 - 研究社 英和コンピューター用語辞典
The curses. ascii module supplies name constants for ASCII characters and functions to test membership in variousASCII character classes.例文帳に追加
curses.ascii モジュールでは、 ASCII 文字を指す名前定数と、様々な ASCII 文字区分についてある文字が帰属するかどうかを調べる関数を提供します。 - Python
TIS 620 is a Thai national standard character set and a superset of US ASCII. 例文帳に追加
TIS 620 はタイの国定標準文字セットで、US ASCII の上位集合である。 - JM
the ASCII character set is the most universal character coding set 例文帳に追加
ASCII文字セットは最も一般的に用いられている文字セットである - 日本語WordNet
Return a string of one character whose ASCII code is the integeri. 例文帳に追加
ASCII コードが整数 i となるような文字 1 字からなる文字列を返します。 - Python
Creates a Unicode object by decoding size bytes of the ASCII encoded string s.例文帳に追加
ASCII でエンコードされた size バイトの文字列 s からUnicode オブジェクトを生成します。 - Python
Notice here how we wanted the Subject: field to contain a non-ASCII character?例文帳に追加
Subject: フィールドに非ASCII文字をふくめていることに注目してください。 - Python
Thus, ASCII goes unchanged into UTF-8, and people using only ASCII do not notice any change: not in code, and not in file size. 例文帳に追加
このように、ASCII は変更なしに UTF-8 に変換でき、ASCII のみを使う場合は、コードにおいてもファイルサイズにおいても、変更に関して何も気にしなくてよい。 - JM
The ASCII Compatible Encoding (ACE) is used to support older software expecting only ASCII and to support downgrading from 8-bit to 7-bit. 例文帳に追加
ASCII互換エンコーディング(ACE)は、ASCII文字しか予期していない古いソフトウェアをサポートするのと、8ビットから7ビットへのダウングレードをサポートするのに使われる。 - コンピューター用語辞典
/etc/group is an ASCII file which defines the groups to which users belong. 例文帳に追加
/etc/group はグループにどのユーザーが所属しているかを定義するASCII ファイルである。 - JM
characters) are encoded simply as bytes 0x00 to 0x7f (ASCII compatibility). 例文帳に追加
の文字) は (ASCII との互換性のために) 単純に 0x00 から 0x7f のバイトに符号化する。 - JM
EBCDIC(Extended Binary Coded Decimal Interchange Code) and ASCII(American Standard Code for Information Interchange) are the most common coding systems 例文帳に追加
最も一般的なコード(体系)はEBCDIC(イビシディック)とASCII(アスキー)である - コンピューター用語辞典
Encodes a Unicode objects using ASCII and returns the result as Python string object.例文帳に追加
ASCII で Unicode オブジェクトをエンコードし、結果を Python 文字列オブジェクトとして返します。 - Python
Convert binhex4 formatted ASCII data to binary, without doingRLE-decompression. 例文帳に追加
binhex4 形式の ASCII 文字列データを RLE 展開を行わないでバイナリに変換します。 - Python
Perform hexbin4 binary-to-ASCII translation and return the resulting string.例文帳に追加
バイナリを hexbin4 エンコードして ASCII 文字列に変換し、変換後の文字列を返します。 - Python
Also, there are currently some issues regarding ASCII NUL characters.例文帳に追加
また、現在のところ、 ASCII NUL 文字に関連したいくつかの問題があります。 - Python
Personal UNIX Starter Kit FreeBSD (in Japanese), ASCII, ISBN 4-7561-1733-3 P3000E. 例文帳に追加
FreeBSD FAQ タイピング機械奴隷FreeBSD チーム - FreeBSD
crc The new (SVR4) portable format with a checksum added. 例文帳に追加
newcnew ASCII(new (SVR4) portable)フォーマットです。 crccrcフォーマットです。 - JM
Many 8-bit codes (such as ISO 8859-1, the Linux default character set) contain ASCII as their lower half. 例文帳に追加
(ISO 8859-1 のような) 多くの 8 ビットのコードでは下半分にASCII を含んでいる。 - JM
EUC-CN is the most important encoding for Linux and includes US ASCII and GB 2312. 例文帳に追加
EUC-CN は Linux において最も重要なエンコーディングであり、US ASCII と GB 2312 を含んでいる。 - JM
functions return a pointer to a static string containing the ASCII representation of number. 例文帳に追加
は number の ASCII 表現を含む静的な領域内の文字列へのポインタを返す。 - JM
If the input name contains non-ASCII characters, then the IDN encoding is used. 例文帳に追加
入力名に非 ASCII 文字が含まれている場合、IDN 符号化形式が使われる。 - JM
Those parts of the node name (delimited by dots) that contain non-ASCII characters are encoded using ASCII Compatible Encoding (ACE) before being passed to the name resolution functions. 例文帳に追加
非 ASCII 文字が含まれている(ピリオドで区切られる)部分ノード名は、名前解決機能に渡される前に ASCII 互換符号化形式 (ACE) を使って符号化される。 - JM
(not in POSIX) If ECHO is also set, ASCII control signals other than TAB, NL, START, and STOP are echoed as ^X, where X is the character with ASCII code 0x40 greater than the control signal. 例文帳に追加
(POSIX にはない) ECHO も同時に設定された場合、TAB, NL, START, STOP の ASCII 制御文字が ^X としてエコーされる。 X は制御文字より ASCII コードで 0x10 だけ大きな文字である。 - JM
The source file is an ASCII text file that contains instructions in XCAD's Device Modeling Language 例文帳に追加
原始ファイルはXCAD用のモデリング言語の命令を含むASCIIテキストファイルである - コンピューター用語辞典
Checks for any printable ASCII character which is not a space or an alphanumeric character.例文帳に追加
空白または英数字以外の ASCII 印字可能文字かどうかを調べます。 - Python
Convert a label to ASCII, as specified in RFC 3490.UseSTD3ASCIIRules is assumed to be false. 例文帳に追加
RFC 3490 仕様に従ってラベルを ASCIIに変換します。 UseSTD3ASCIIRules は偽であると仮定します。 - Python
ASCII is the American Standard Code for Information Interchange. It is a 7-bit code. 例文帳に追加
ASCII は、情報交換用米国標準コード (American Standard Code forInformation Interchange) の略で、7 ビットのコードである。 - JM
EUC-JP is the most important encoding for Linux and includes US ASCII and JIS X 0208. 例文帳に追加
EUC-JP が Linux において最も重要なエンコーディングであり、US ASCII と JIS X 0208 を含んでいる。 - JM
| 日本語ワードネット1.1版 (C) 情報通信研究機構, 2009-2026 License. All rights reserved. WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved.License |
| Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved. |
JESC: Japanese-English Subtitle Corpus映画・海外ドラマ英語字幕翻訳辞書のコンテンツは、特に明示されている場合を除いて、次のライセンスに従います: Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) |
| この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。 |
| Copyright 2001-2004 Python Software Foundation.All rights reserved. Copyright 2000 BeOpen.com.All rights reserved. Copyright 1995-2000 Corporation for National Research Initiatives.All rights reserved. Copyright 1991-1995 Stichting Mathematisch Centrum.All rights reserved. |
| Copyright (C) 1994-2004 The XFree86®Project, Inc. All rights reserved. licence Copyright (C) 1995-1998 The X Japanese Documentation Project. lisence |
| Copyright (c) 2001 Robert Kiesling. Copyright (c) 2002, 2003 David Merrill. The contents of this document are licensed under the GNU Free Documentation License. Copyright (C) 1999 JM Project All rights reserved. |
| Copyright 1994-2010 The FreeBSD Project. All rights reserved. license |
| Copyright 2001-2010 Gentoo Foundation, Inc. The contents of this document are licensed under the Creative Commons - Attribution / Share Alike license. |
|
ログイン |
Weblio会員(無料)になると
|
|
ログイン |
Weblio会員(無料)になると
|


Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)