DS-Pokemon-Rom-Editor/DS_Map/Extensions.cs
2021-07-17 21:04:55 +02:00

11 lines
313 B
C#

namespace DSPRE {
public static class Extensions {
public static int IndexOfNumber(this string str) {
return str.IndexOfAny("0123456789".ToCharArray());
}
public static bool ContainsNumber(this string str) {
return str.IndexOfNumber() > 0;
}
}
}