C로 substring만 뽑아내는 것에 대해...

aeronova의 이미지

안녕하세요,
Python으로 편하게(?) 살다가 C로 처리해야 해서 상황에 처했습니다.
혼자 끙끙대면서 하다가 조언을 구하고자 질문을 올립니다.
우선 제가 처리해야 할 output에 다음과 같은 line이 있습니다.

 x                   	  9.99999853346405e-001

숫자 부분만 가져오기 위해서 공백을 이용해서 문자열을 분리하려고 다음과 같이 code를 작성하였습니다.

  while (fgets(line, sizeof(line), fp) != NULL)  
  {
    // go through line by line: read a line and store it to "line"
    if(strstr(line, "x")) {
      printf("%s\n", line);
      pch = strtok(line," ");  // get "x"
      pch = strtok(NULL, " "); // get whitespace
      pch = strtok(NULL, " "); // get the number
      printf("%s\n",pch);     
      X[0] = atof(pch);
    }
  }

일단은 strtok을 이용해서 계속 substring을 잘라서 원하는 숫자부분을 얻을 수 있었지만, 작성하고보니 좀 깔끔하지 못한것 같습니다. 혹시 좀 더 나은 방법이 없을까요? 고수님들의 조언 부탁드립니다.

ssehoony의 이미지

문자열의 앞에 공백이 있어도 atof 는 변환을 잘 합니다.
그냥 X[0] = atof(&line[1]); 라고만 하셔도 될 듯 하네요.

익명사용자의 이미지

while (fgets(line, sizeof(line), fp) != NULL)
{
// go through line by line: read a line and store it to "line"
char *ps;
if( (ps = strstr(line, "x"))) {
printf("%s\n", line);
for ( ; *ps && !isdigit(*ps); ps++ ) ;
printf("%s\n",ps);
X[0] = atof(ps);
}
}

Fe.head의 이미지

어떤 형식이 있다면 구조체로 읽어들어 atof하는것이 나을것 같은데요.

typedef struct st_format {
  char  sep[1]; // x
  char  space[10]; // 공백
  char  number[50]; // 숫자
  char  buffer[124]; // 기타+버퍼용
} ST_FMT;
 
ST_FMT line;
..
  while (fgets((char *)&line, sizeof(line), fp) != NULL)  
  {
    // go through line by line: read a line and store it to "line"
    if(line.sep[0] == 'x')) {
      printf("%s\n", (char *)line);
      printf("%s\n",line.number);    
      X[0] = atof(line.number);
    }
  }

-----------------------
과거를 알고 싶거든 오늘의 네 모습을 보아라. 그것이 과거의 너니라.
그리고 내일을 알고 싶으냐?
그러면 오늘의 너를 보아라. 그것이 바로 미래의 너니라.

고작 블로킹 하나, 고작 25점 중에 1점, 고작 부활동
"만약 그 순간이 온다면 그때가 네가 배구에 빠지는 순간이야"

haewoo의 이미지

    while(fgets(line, sizeof(line), fp) != NULL)
    {
        sscanf(line, "x%lf", &X[0]);
    }

Fe.head의 이미지

헛.. 획기적인.. 방법 ^^
-----------------------
과거를 알고 싶거든 오늘의 네 모습을 보아라. 그것이 과거의 너니라.
그리고 내일을 알고 싶으냐?
그러면 오늘의 너를 보아라. 그것이 바로 미래의 너니라.

고작 블로킹 하나, 고작 25점 중에 1점, 고작 부활동
"만약 그 순간이 온다면 그때가 네가 배구에 빠지는 순간이야"

익명사용자의 이미지

while (fgets(line, sizeof(line), fp) != NULL)
{
while(isdigit(line[i]) == 0) i++;
X[cnt++] = atof(line+i);
}

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.