mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-09 21:50:57 -05:00
11 lines
313 B
C#
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;
|
|
}
|
|
}
|
|
}
|