このページの内容は最新ではありません。最新版の英語を参照するには、ここをクリックします。
replace
1 つ以上の部分文字列の検索および置換
説明
例
string 配列内の部分文字列を置換
ファイル名のリスト内のプレースホルダー テキストを置き換えます。
string 配列を作成します。
str = ["<ROOT_DIR>\MyData\data.tar.gz"; "<ROOT_DIR>\MyScripts\cleandata.m"; "<ROOT_DIR>\MyScripts\preprocess.m"; "<ROOT_DIR>\MyScripts\publishResults.m"]
str = 4x1 string
"<ROOT_DIR>\MyData\data.tar.gz"
"<ROOT_DIR>\MyScripts\cleandata.m"
"<ROOT_DIR>\MyScripts\preprocess.m"
"<ROOT_DIR>\MyScripts\publishResults.m"
<ROOT_DIR>
をファイル パス名を示す string に置き換えます。
old = "<ROOT_DIR>"; new = "C:\MyProject"; newStr = replace(str,old,new)
newStr = 4x1 string
"C:\MyProject\MyData\data.tar.gz"
"C:\MyProject\MyScripts\cleandata.m"
"C:\MyProject\MyScripts\preprocess.m"
"C:\MyProject\MyScripts\publishResults.m"
パターンと一致する部分文字列を置換
R2020b 以降
電話番号を含む string を作成します。
str = "Hide the numbers in: (508) 555-1234"
str = "Hide the numbers in: (508) 555-1234"
関数 digitsPattern
を使用して 1 桁が一致するパターンを作成します。
pat = digitsPattern(1)
pat = pattern
Matching:
digitsPattern(1)
すべての桁を "#"
文字に置き換えます。
newStr = replace(str,pat,"#")
newStr = "Hide the numbers in: (###) ###-####"
電話番号のみと一致する別のパターンを作成します。
pat = "(" + digitsPattern(3) + ") " + digitsPattern(3) + "-" + digitsPattern(4)
pat = pattern
Matching:
"(" + digitsPattern(3) + ") " + digitsPattern(3) + "-" + digitsPattern(4)
別の数字も含む文字列内の電話番号を置き換えます。
str = "12 calls made to: (508) 555-1234"; newStr = replace(str,pat,"(###) ###-####")
newStr = "12 calls made to: (###) ###-####"
pattern オブジェクトを作成する関数の一覧については、pattern
を参照してください。
複数の部分文字列を置換
キャリッジ リターンを改行文字に置き換えます。
string 配列を作成します。
str = ["Submission Date: 11/29/15\r"; "Acceptance Date: 1/20/16\r"; "Contact: john.smith@example.com\r\n"]
str = 3x1 string
"Submission Date: 11/29/15\r"
"Acceptance Date: 1/20/16\r"
"Contact: john.smith@example.com\r\n"
キャリッジ リターンを置き換えます。
old = {'\r\n','\r'}; new = '\n'; newStr = replace(str,old,new)
newStr = 3x1 string
"Submission Date: 11/29/15\n"
"Acceptance Date: 1/20/16\n"
"Contact: john.smith@example.com\n"
入力引数
str
— 入力テキスト
string 配列 | 文字ベクトル | 文字ベクトルの cell 配列
入力テキスト。string 配列、文字ベクトルまたは文字ベクトルの cell 配列として指定します。
old
— 置き換える部分文字列
string 配列 | 文字ベクトル | 文字ベクトルの cell 配列 | pattern
配列 (R2020b 以降)
置き換える部分文字列。次のいずれかとして指定します。
string 配列
文字ベクトル
文字ベクトルの cell 配列
pattern
配列 "(R2020b 以降)"
new
— 新しい部分文字列
string 配列 | 文字ベクトル | 文字ベクトルの cell 配列
新しい部分文字列。string 配列、文字ベクトルまたは文字ベクトルの cell 配列として指定します。
ヒント
重複するパターンの複数の置換を実行するには、関数
strrep
を使用します。
拡張機能
tall 配列
メモリの許容量を超えるような多数の行を含む配列を計算します。
C/C++ コード生成
MATLAB® Coder™ を使用して C および C++ コードを生成します。
使用上の注意事項および制限事項:
str
、old
、new
は、string スカラー、文字ベクトル、または 1 つ以下の文字ベクトルを含む cell 配列でなければなりません。
スレッドベースの環境
MATLAB® の backgroundPool
を使用してバックグラウンドでコードを実行するか、Parallel Computing Toolbox™ の ThreadPool
を使用してコードを高速化します。
この関数はスレッドベースの環境を完全にサポートしています。詳細については、スレッドベースの環境での MATLAB 関数の実行を参照してください。
分散配列
Parallel Computing Toolbox™ を使用して、クラスターの結合メモリ上で大きなアレイを分割します。
使用上の注意事項および制限事項:
old
は string 配列、文字ベクトル、または文字ベクトルの cell 配列でなければなりません。
詳細については、分散配列を使用した MATLAB 関数の実行 (Parallel Computing Toolbox)を参照してください。
バージョン履歴
R2016b で導入
参考
split
| erase
| replaceBetween
| join
| extract
| insertAfter
| insertBefore
| strlength
| count
| pattern
| digitsPattern
MATLAB コマンド
次の MATLAB コマンドに対応するリンクがクリックされました。
コマンドを MATLAB コマンド ウィンドウに入力して実行してください。Web ブラウザーは MATLAB コマンドをサポートしていません。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)