Automation and bots

 Помощь      Поиск      Пользователи


 Страниц (1): [1]   

> Без описания
Kibor
Отправлено: 24 Июля, 2018 - 02:43:14
Post Id



Администратор
Full Member


Покинул форум
Сообщений всего: 160
Дата рег-ции: Дек. 2017  
Репутация: 0
Карма 0




A small addition.
Modification format .
Copy the char array to string.

Example 1 (copying all the masive starting with the zero index):
CODE:
char a [5];
a [0] = 'q';
a [1] = 'w';
a [2] = 'e';
a [3] = 'r';
a [4] = 't';
string s = format (#a [0]); // Copy the whole array to zero (when a [...] == 0). Indicates the end of a line
messagebox (s);


In s the string qwert
The end of the line is set automatically.

or

Example 2 (copying a part of the masive starting from a nonzero index):
CODE:
char a [5];
a [0] = 'q';
a [1] = 'w';
a [2] = 'e';
a [3] = 'r';
a [4] = 't';
string s = format (#a [2], 3); // Specify by the second parameter the number of elements to be copied
messagebox (s);
// In s the string ert

char a [5];
a [0] = 'q';
a [1] = 'w';
a [2] = 'e';
a [3] = 'r';
a [4] = 't';
string s = format (#a [2], 2); // Specify by the second parameter the number of elements to be copied
messagebox (s);

// In s the string er


If the copy does not come from the zeroth index, you need to put the second parameter, since otherwise the data that goes further in the memory will be copied.

[url=http://kibor-bot.com/forum/topic.php? forum = 1 & topic = 4 & postid = 1374765027 # 1374765027] Other features format [/url]
[url=http://kibor-bot.com/forum/topic.php? forum = 1 & topic = 4 & postid = 1375046083 # 1375046083] Convert string to array char [/url]

-----
The Visual Code Editor is Kibor. Creating bots without knowledge of programming.

Learning function for recognizing text.
-----
 
 Top
Страниц (1): [1]
Сейчас эту тему просматривают: 1 (гостей: 1, зарегистрированных: 0)
« About Kibor »


Все гости форума могут просматривать этот раздел.
Только администраторы и модераторы могут создавать новые темы в этом разделе.
Только зарегистрированные пользователи могут отвечать на сообщения в этом разделе.
 




Powered by