Hi, is there any function or algorithm that can completely remove a string array element?
For example,
string mystring = 'x', 'xx', 'xx', 'xxx';
if I want to remove 'xx' and I know the position of 'xx' in the array, I want this :
mystring = 'x', 'xxx';
Anything? I think I made it pretty clear? I unsuccessfully tried to just move the unwanted elements towards the end but apparantly, for my problem it didn't work out and ended up causing more problems...