You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Jellyfin.Api.Helpers
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Request Extensions.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static class RequestHelpers
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Splits a string at a seperating character into an array of substrings.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="value">The string to split.</param>
|
|
|
|
|
/// <param name="separator">The char that seperates the substrings.</param>
|
|
|
|
|
/// <param name="removeEmpty">Option to remove empty substrings from the array.</param>
|
|
|
|
|
/// <returns>An array of the substrings.</returns>
|
|
|
|
|
internal static string[] Split(string value, char separator, bool removeEmpty)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrWhiteSpace(value))
|
|
|
|
|
{
|
|
|
|
|
return Array.Empty<string>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return removeEmpty
|
|
|
|
|
? value.Split(new[] { separator }, StringSplitOptions.RemoveEmptyEntries)
|
|
|
|
|
: value.Split(separator);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|