You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
String title = 'ABC “ABC ABC”';
String newTitle = new ReCase(title).titleCase;
Expected newTitle: 'Abc “Abc Abc”';
However, this is returned (notice the diference between the second ABC): 'Abc “abc Abc”';
Hypothesis: I think that the expected result is not reached because the “ character is --for some reason-- considered to be part of the word. Something like that?
Thanks.
The text was updated successfully, but these errors were encountered:
Example:
Expected newTitle:
'Abc “Abc Abc”';
However, this is returned (notice the diference between the second ABC):
'Abc “abc Abc”';
Hypothesis: I think that the expected result is not reached because the “ character is --for some reason-- considered to be part of the word. Something like that?
Thanks.
The text was updated successfully, but these errors were encountered: