When using a "Split Method"

Hello, guys?
When using “Split Method,” why put “c” in that formula?

00

Ex: status.split(" "c);

Can you explain to me what meaning of the “c” and why it’s needed?

@sphencer “c” is used when you split the string with respect to single character. You also try without using “c” splitting with respect to single like below.

String part = newDT.Split({" "},StringSplitOptions.RemoveEmptyEntries)

1 Like

Thank you for reply, dear!
I understand what meaning of “c” for you~! Thank you!

1 Like

@sphencer you are welcome :slight_smile:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.