DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ BeautifiedToVector()

vector string::BeautifiedToVector ( )
inlineprivate

Convert beautified string into a vector.

Аргументы
vecbeautified string
Возвращает
vector resulting vector

См. определение в файле EnString.c строка 67

68 {
69 string copy = value;
70 copy.Replace("<", "");
71 copy.Replace(">", "");
72 copy.Replace(",", " ");
73 return copy.ToVector();
74 }
proto int Replace(string sample, string replace)
Replace all occurrances of 'sample' in 'str' by 'replace'.
proto vector ToVector()
Returns a vector from a string.

Перекрестные ссылки Replace() и ToVector().