memrootじしょ
英和翻訳
string parsing
string handling
C/C++
malloc
memcpy_s
strncpy_s
snprintf
C standard library
string parsing
/strɪŋ ˈpɑːrsɪŋ/
ストリング パーシング
1.
文字列解析、構文解析。
コンピュータプログラミングにおいて、テキストデータ(文字列)を特定のルールや文法に基づいて分析し、その構造を理解したり、そこから必要な情報を抽出したりする一連の処理を指します。例えば、設定ファイルの読み込みやコマンドの解釈などに用いられます。
The
program
performs
string
parsing
on
the
input
data.
(そのプログラムは入力データに対して文字列解析を実行します。)
The program
そのプログラム
performs
実行する、行う
string parsing
文字列解析
on the input data
入力データに対して
Advanced
string
parsing
techniques
are
crucial
for
compiler
design.
(高度な文字列解析技術はコンパイラの設計において不可欠です。)
Advanced
高度な
string parsing techniques
文字列解析技術
are crucial
不可欠である
for compiler design
コンパイラの設計にとって
Before
processing,
validate
the
format
using
robust
string
parsing.
(処理の前に、堅牢な文字列解析を用いてフォーマットを検証してください。)
Before processing
処理の前に
validate the format
フォーマットを検証する
using
~を用いて
robust string parsing
堅牢な文字列解析
The
library
provides
functions
for
efficient
string
parsing.
(そのライブラリは効率的な文字列解析のための機能を提供します。)
The library
そのライブラリ
provides functions
機能を提供する
for efficient
効率的な~のための
string parsing
文字列解析
関連
text processing
lexical analysis
syntax analysis
tokenization
regular expressions
data extraction
parsing
compiler
interpreter