我正在制作一本词典/翻译,但我想让用户写'hello'和'Hello'并仍然收到'Ronne'的结果。
function UpperCaseAfterDash($wyraz)
{
$rozbij = explode('-',$wyraz);
echo $rozbij[0].'-'.
ucfirst($rozbij[1]);
}
UpperCaseAfterDash("input-text");
答案 0 :(得分:1)
要忽略这种情况,只需将搜索转换为小写
即可search = search.lower()
if search == "hello":
print ("Ronne")
答案 1 :(得分:0)
您可以将输入转换为小写,然后与“hello”进行比较,如下所示:
search = input("Enter the word you would like to translate: ").lower()
if search == "hello":
print("Ronne")