Tests if this string starts with the specified prefix.
(java.lang.String prefix)
| 730 | * Tests if this string starts with the specified prefix. |
| 731 | */ |
| 732 | public boolean startsWith(java.lang.String prefix){ |
| 733 | return startsWith(prefix, 0); |
| 734 | } |
| 735 | |
| 736 | /** |
| 737 | * Tests if this string starts with the specified prefix beginning at the specified index. |
no outgoing calls