| 例文 |
a unicodeの部分一致の例文一覧と使い方
該当件数 : 151件
Encodes a Unicode objects using UTF-8 and returns the result as Python string object.例文帳に追加
UTF-8 で Unicode オブジェクトをエンコードし、結果を Python 文字列オブジェクトとして返します。 - Python
Encodes a Unicode objects using Latin-1 and returns the result as Python string object.例文帳に追加
Latin-1 で Unicode オブジェクトをエンコードし、結果を Python 文字列オブジェクトとして返します。 - Python
Encodes a Unicode objects using ASCII and returns the result as Python string object.例文帳に追加
ASCII で Unicode オブジェクトをエンコードし、結果を Python 文字列オブジェクトとして返します。 - Python
Encodes a Unicode objects using MBCS and returns the result as Python string object.例文帳に追加
MBCS で Unicode オブジェクトをエンコードし、結果を Python 文字列オブジェクトとして返します。 - Python
Determine whether code is in tableA.1 (Unassigned code points in Unicode 3.2).例文帳に追加
code がテーブル A.1 (Unicode 3.2 における未割り当てコード点: unassigned code point) かどうか判定します。 - Python
Produce a string that is suitable as raw Unicode literal in Python source code例文帳に追加
Python ソースコードにおける raw Unicode リテラルとして適切な文字列を生成します。 - Python
Returns true if the object o is a Unicode object or an instance of a Unicode subtype.Changed in version 2.2:Allowed subtypes to be accepted.例文帳に追加
o が Unicode 文字列型か Unicode 文字列型のサブタイプであるときに真を返します。 バージョン 2.2 で 変更 された仕様:サブタイプを引数にとれるようになりました - Python
It is called "a part alternation mark" in English, and represented as U+303D in Unicode and as 1-3-28 in JIS X 0213. 例文帳に追加
英語ではpartalternationmarkと呼ばれ、UnicodeではU+303Dのコードを、JISX0213では1-3-28のコードを持つ。 - Wikipedia日英京都関連文書対訳コーパス
Associate dialect with name. dialect must be a subclass of csv.Dialect. name must be a string or Unicode object.例文帳に追加
dialect はcsv.Dialect のサブクラスでなければなりません。 name は文字列か Unicode オブジェクトでなければなりません。 - Python
This type represents a 16-bit unsigned storage type which is used by Python internally as basis for holding Unicode ordinals.例文帳に追加
この型は 16 ビットの符号なしストレージ型を表し、Unicode 序数(Unicode ordinal) を保持するための基礎単位として Python が内部的に使います。 - Python
Convert a possibly multibyte string to a safely splittable format.s is the string to split.Uses the input_codec to try and convert the string to Unicode,so it can be safely split on character boundaries (even for multibytecharacters).Returns the string as-is if it isn't known how to convert s toUnicode with the input_charset.Characters that could not be converted to Unicode will be replaced with the Unicode replacement character "U+FFFD".例文帳に追加
おそらくマルチバイトの文字列を、安全に split できる形式に変換します。 - Python
The KEYMAP variable, set in /etc/conf.d/keymaps, should have a Unicode keymap specified.例文帳に追加
/etc/conf.d/keymapsファイルの中で定義されているKEYMAP変数にUnicodeキーマップを指定する必要があります。 - Gentoo Linux
To ensure that any unicode in your man pages render correctly, edit /etc/man.confand replace a line as shown below.例文帳に追加
manページでunicodeが正しく表示されるために、/etc/man.confを編集して以下の行を置き換えます。 - Gentoo Linux
Returns a Python string object holding the UTF-16 encoded value of the Unicode data in s.例文帳に追加
s 中の Unicode データを UTF-16 でエンコードした結果が入っているPython 文字列オブジェクトを返します。 - Python
Additionally, the DOMString defined in the recommendation is mapped to a Python string or Unicode string.例文帳に追加
さらに、勧告で定義されている DOMString は、Python 文字列または Unicode 文字列に対応付けられます。 - Python
RFC 3454 defines a procedure for ``preparing'' Unicode strings in internet protocols.例文帳に追加
RFC 3454 では、インターネットプロトコル上で Unicode 文字列を``調製 (prepare)'' するためのプロシジャを定義しています。 - Python
Join a sequence of strings using the given separator and return the resulting Unicode string.例文帳に追加
指定した separator で文字列からなるシーケンスを連結 (join) し、連結結果を Unicode 文字列で返します。 - Python
If this attribute is set to a non-zero integer, the handler functions will be passed Unicode strings.例文帳に追加
この属性をゼロ以外の整数にすると、ハンドラ関数に Unicode 文字列が渡されます。 - Python
Creates a Unicode object by decoding size bytes of the encoded string s using the given mapping object.例文帳に追加
エンコードされた size バイトの文字列 s から mapping に指定されたオブジェクトを使って Unicode オブジェクトを生成します。 - Python
Encodes a Unicode objects using the given mapping object and returns the result as Python string object.例文帳に追加
Unicode オブジェクトを mapping に指定されたオブジェクトを使ってエンコードし、結果を Python 文字列オブジェクトとして返します。 - Python
A dictionary that maps Unicode codepoints to HTML entity names.New in version 2.3. 例文帳に追加
A dictionary that maps Unicode codepoints to HTML entity names.UnicodeのコードポイントをHTMLのエンティティ名に変換するための辞書です。 バージョン 2.3 で 新たに追加 された仕様です。 - Python
A byte 0xxxxxxx stands for the Unicode 00000000 0xxxxxxx which codes the same symbol as the ASCII 0xxxxxxx. 例文帳に追加
これは、ASCII の 0xxxxxxx と同じシンボルのコードである。 - JM
To enable UTF-8 on the console, you should edit /etc/rc.conf and set UNICODE="yes", and also read the comments in that file -- it is important to have a font that has a good range of characters if you plan on making the most of Unicode.例文帳に追加
UTF-8をコンソールで有効にするために、/etc/rc.confを編集しUNICODE="yes"とセットします。 そして、そのファイルのコメントを読むことも忘れないでください。 - Gentoo Linux
Class that simulates a string or a Unicode string object.例文帳に追加
文字列またはユニコード文字列オブジェクトをシミュレートするクラス。 - Python
Convert a splittable string back into an encoded string. ustris a Unicode string to ``unsplit''.This method uses the proper codec to try and convert the string fromUnicode back into an encoded format. 例文帳に追加
このメソッドでは、文字列を Unicode からべつのエンコード形式に変換するために適切な codec を使用します。 - Python
When using one of the text-only web browsers, make absolutely sure you are using a Unicode-aware terminal.例文帳に追加
テキストのみのブラウザを使用する場合には、Unicode対応のターミナルを使用してるかを必ず確認してください。 - Gentoo Linux
Unicode (ISO 10646) is a standard which aims to unambiguously represent every character in every human language. 例文帳に追加
Unicode (ISO10646) は、人間が用いる全ての言語の全ての文字を、明確にあらわすことを目的とした規格である。 - JM
Unicode strings are much like strings, but are specified in the syntax using a preceeding "u" character:u'abc', u"def".例文帳に追加
Unicode 文字列はほとんど文字列と同じですが、u'abc' 、u"def" といったように先頭に文字 "u" を付けて指定します。 - Python
Unicode objects pass back a pointer to the default encoded string version of the object if such a conversion is possible.例文帳に追加
Unicode オブジェクトの場合、デフォルトエンコーディングでの変換が可能ならば、変換したオブジェクトから文字列へのポインタを返します。 - Python
When s is a string or Unicode string object the in and not in operations act like a substring test.例文帳に追加
s が文字列または Unicode 文字列の場合、 演算操作 in および not in は部分文字列の一致テストと同じように動作します。 - Python
For this to work, make sure you have properly created a Unicode locale as explained in Chapter1.例文帳に追加
Unicodeをできるだけ利用する計画があるなら、十分な文字コードの範囲を持ったフォントを持つことが重要です。 - Gentoo Linux
If an application has support for both a Qt and GTK+2 GUI, the GTK+2 GUI will generally give better results with Unicode.例文帳に追加
アプリケーションがQTとGTK+2の両方のGUIをサポートしている場合、Unicodeに関してはGTK+2の方が一般的に良いです。 - Gentoo Linux
Otherwise each byte is transformed according to the current mapping table (which translates it to a Unicode value). 例文帳に追加
そうでなければ、それぞれのバイトは現在の(各バイトを Unicode の値に変換する)マッピングテーブルに従って変換される。 - JM
If the current Unicode value is a control character, or we are currently processing an escape sequence, the value will treated specially. 例文帳に追加
現在の Unicode の値がコントロール文字であるかエスケープシーケンスを処理している時には、その値は特別に扱われる。 - JM
These constants define various encodings of the Unicode byte order mark(BOM) used in UTF-16 and UTF-32 data streams to indicate the byte order used in the stream or file and in UTF-8 as a Unicode signature.BOM_UTF16 is either BOM_UTF16_BE or BOM_UTF16_LE depending on the platform's native byte order,BOM is an alias for BOM_UTF16, BOM_LE for BOM_UTF16_LE and BOM_BE for BOM_UTF16_BE.The others represent the BOM in UTF-8 and UTF-32 encodings.例文帳に追加
ここで定義された定数は、様々なエンコーディングの Unicode のバイトオーダマーカ (BOM) で、UTF-16 と UTF-32 におけるデータストリームやファイルストリームのバイトオーダを指定したり、UTF-8 における Unicode signature として使われます。 - Python
It uses 17 "planes" of 65,536 code points to describe a maximum of 1,114,112characters.例文帳に追加
そして、Unicodeは65,536コードを持つ17のplaneで、最大1,114,112文字を表現します。 - Gentoo Linux
Like "O" but requires that the Python object is a Unicodeobject. 例文帳に追加
"O" に似ていますが、Python オブジェクトは Unicode オブジェクトでなければなりません。 - Python
If the left operand of a % operator is a string or Unicode object, nocoercion takes place and the string formatting operation is invokedinstead. 例文帳に追加
% 演算子の左被演算子が文字列か Unicode オブジェクトの場合、型強制は起きず、文字列としての書式化操作が呼び出されます。 - Python
content may be a Unicode string or a byte string; the expat reader module produces always Unicode strings.例文帳に追加
content はユニコード文字列、バイト文字列のどちらでもかまいませんが、expat リーダ・モジュールは常にユニコード文字列を生成するようになっています。 - Python
This will return a suitably decoded Unicode stringwhn the value is a tuple, or the original string unquoted if it isn't. 例文帳に追加
この値がタプルならばこの関数は適切にデコードされた Unicode 文字列を返し、そうでない場合は unquote された元の文字列を返します。 - Python
If string is a Unicode object,this function computes the default encoding of string and operates on that.例文帳に追加
string が Unicode オブジェクトの場合、この関数はstring のデフォルトエンコーディング版を計算し、デフォルトエンコーディング版に対して操作を行います。 - Python
(where format is a string or Unicode object), % conversion specifications in format are replaced with zero or more elements of values.例文帳に追加
(format は文字列またはUnicode オブジェクト)とすると、format 中の % 変換指定は values 中のゼロ個またはそれ以上の要素で置換されます。 - Python
Characters not contained in Unicode are treated as external characters, and a file F recording font data for external characters is prepared in a server 180.例文帳に追加
Unicodeに含まれていない文字は外字として取り扱い、外字のためのフォントデータを収録したファイルFをサーバ180に用意する。 - 特許庁
convert CIDs stored in a PDF file into corresponding Unicode code points 例文帳に追加
PDF ファイルに含まれているCIDを対応するユニコードのコードに変換する - 研究社 英和コンピューター用語辞典
In a Unicode encoding, text is stored in sequential order in the backing store. 例文帳に追加
ユニコードの符号化では,テキストは順次,補助記憶に格納される. - コンピューター用語辞典
, a superset of Unicode, occupies even a 31-bit code space and the obvious UCS-4 例文帳に追加
は 31 ビットのコード空間を占めるが、その最も単純な符号化であるUCS-4 - JM
Note:These cannot be decoded; passing a non-NULLvalue for encoding will result in a TypeError. 例文帳に追加
注意:Unicode オブジェクトはデコードできません; encoding に NULL でない値を渡すと、TypeError になります。 - Python
| 例文 |
| Copyright © Japan Patent office. All Rights Reserved. |
| 本サービスで使用している「Wikipedia日英京都関連文書対訳コーパス」はWikipediaの日本語文を独立行政法人情報通信研究機構が英訳したものを、Creative Comons Attribution-Share-Alike License 3.0による利用許諾のもと使用しております。詳細はhttp://creativecommons.org/licenses/by-sa/3.0/ および http://alaginrc.nict.go.jp/WikiCorpus/ をご覧下さい。 |
| Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved. |
| この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、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 2001-2010 Gentoo Foundation, Inc. The contents of this document are licensed under the Creative Commons - Attribution / Share Alike license. |
| 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. |
|
ログイン |
Weblio会員(無料)になると
|
|
ログイン |
Weblio会員(無料)になると
|
