Skip to content

Commit

Permalink
Update StringUtility.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
mass10 committed Sep 16, 2023
1 parent a9d1cb9 commit e3553c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion StringUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public static string FormatPhoneNumber(string phone)
return $"電話: {phone.Substring(0, 3)}-{phone.Substring(3, 4)}-{phone.Substring(7, 4)}";
}
}
return phone;
return $"電話: {phone}";
}

/// <summary>
Expand Down

0 comments on commit e3553c0

Please sign in to comment.