mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 02:44:56 +08:00
13 lines
302 B
C#
13 lines
302 B
C#
using System;
|
||
using System.Linq;
|
||
|
||
namespace RomajiConverter.Core.Extensions
|
||
{
|
||
public static class StringExtension
|
||
{
|
||
public static string[] LineToUnits(this string str)
|
||
{
|
||
return str.Split(new[] { ' ', ' ' }, StringSplitOptions.RemoveEmptyEntries);
|
||
}
|
||
}
|
||
} |