関数remove_characters_from_str マニュアル

(The documentation of function remove_characters_from_str)

Last Update: 2023/4/6


◆機能・用途(Purpose)

文字列から指定した文字を削除する。
Remove specified characters from a string.


◆形式(Format)

#include <mystring.h>
inline char ∗remove_characters_from_str
(const char ∗string_original,const char ∗characters)


◆引数(Arguments)

string_original 元々の文字列。
The originial string.
characters 除去したい文字を列挙した配列。
An array composed of the characters to remove.


◆戻り値(Return value)

引数string_originalが表す文字列から 引数charactersの配列要素に登場する文字を削除した文字列。
A string created by removing characters in argument characters from a string expressed by argument string_original.


◆使用例(Example)

char original[]="a\t\tb\n\n\nc\t\nd\n\te"

char ∗modified=remove_characters_from_str (original,"\t\n");

この例では変数originalに入っている文字列から \t\nが削除されて modified="abcde"となる。
In this example, \t and \n are removed from the string in the variable original, resulting in modified="abcde".