C의 정확한 문자열 일치 및 하위 문자열 변환
C std::string이 주어진 문자열로 시작하는지 확인하려면 제공된 Python 예제에서는 검색 위치 매개변수를 허용하는 rfind 오버로드를 사용하세요. 방법은 다음과 같습니다.
<code class="cpp">std::string s = "tititoto"; if (s.rfind("titi", 0) == 0) { // pos=0 limits search to the prefix // s starts with the prefix }</code>
C 20 이상에서는 start_with 메서드를 도입하여 프로세스를 단순화했습니다.
<code class="cpp">std::string s = "tititoto"; if (s.starts_with("titi"s)) { // "s" suffix creates a std::string_view // s starts with the prefix }</code>
이제 int 변환을 고려해 보겠습니다. 원본 Python 코드에서는 슬라이스 표기법 [len('--foo='):]을 사용하여 하위 문자열이 추출됩니다. C에서 동일한 결과를 얻으려면 substr 메서드를 사용하세요.
<code class="cpp">std::string argv1 = "--foo=98"; std::string foo_value_str = argv1.substr(argv1.find("=") + 1); int foo_value = std::stoi(foo_value_str);</code>
이러한 기술을 사용하면 C에서 문자열 접두어를 확인하고 부분 문자열을 정수로 효율적으로 변환할 수 있습니다.
위 내용은 C에서 문자열 접두사를 확인하고 하위 문자열을 정수로 변환하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!