Why would you want to use strmid anyway?
pawn Код:
format(PlayerInformation[playerid][String], 64, "N/A");
Is a lot easier in your case.
If you wanted to use strmid, it would need to be this:
pawn Код:
new string[126];
format(string, 126, "N/A");
strmid(PlayerInformation[playerid][String], string, 0, strlen(string), 126);
I'm sure you can tell the difference between the two - using strmid brings in unneeded lines and usage. Normally you would use strmid for something like this:
pawn Код:
new string[126];
format(string, 126, "%s", GetPlayersName(playerid));
strmid(PlayerInformation[playerid][Name], string, 0, strlen(string), 126);
Even then, you can use format, which in my opinion is a lot easier, because it would turn into:
pawn Код:
format(PlayerInformation[playerid][Name], 126, "%s", GetPlayersName(playerid));