Thread: Midi <-> OSC
View Single Post
Old 11-19-2017, 10:41 PM   #105
mschnell
Human being with feelings
 
mschnell's Avatar
 
Join Date: Jun 2013
Location: Krefeld, Germany
Posts: 14,690
Default

Quote:
Originally Posted by fundorin View Post
all vowels and spaces should be removed.
That means that you need to work on each single character.

Hence (as I said in the previous message), you need to do a loop including something like

Code:
  c = str_getchar(oscstr, i, 'c');
  i += 1;
  ...
  ... ? (
    str_setchar(sysexstr, j, c, 'c');
    j += 1;
  );
-Michael
mschnell is offline   Reply With Quote