charectersInstr is a single character; you will need a pointer to a character:
char *charectersInstr = new char[strLenght];
Dynamic memory allocation has to be done with care (and probably not at all). You will need to free/delete the memory before you leave loop(). Your current (attempted) code will run out of memory.
Other post/duplicate merged with this one
Please do NOT cross post / duplicate as it wastes peoples time and efforts to have more than one post for a single topic.
Continued cross posting could result in a time out from the forum.