forked from External/mage
[VOW] Implemented Undead Butler
This commit is contained in:
parent
5dbc8f11f3
commit
1656324329
5 changed files with 71 additions and 6 deletions
|
|
@ -915,6 +915,14 @@ public final class CardUtil {
|
|||
}
|
||||
}
|
||||
|
||||
public static String getTextWithFirstCharLowerCase(String text) {
|
||||
if (text != null && text.length() >= 1) {
|
||||
return Character.toLowerCase(text.charAt(0)) + text.substring(1);
|
||||
} else {
|
||||
return text;
|
||||
}
|
||||
}
|
||||
|
||||
private static final String vowels = "aeiouAEIOU";
|
||||
|
||||
public static String addArticle(String text) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue