# Split

&#x20;         หลังจากการนำ string มาต่อกัน การแบ่ง string ออกจากกันก็มีความสำคัญเช่นกัน ซึ่งสามารถนำไปประยุกต์ใช้กับอุปกรณ์ไมโครคอนโทรลเลอร์ ที่รับค่ามาจากหลายๆที่และส่งออกไปเป็นข้อความข้อความเดียวแล้วจึงนำไปตัดเป็นส่วนๆเพื่อวิเคราะห์

```cpp
// C++ program to print words in a sentence
#include <iostream> 
#include <string.h> 
using namespace std;


void split(string str,string store[])
{
	string word = "";
  int a = 0;
	for (auto x : str) 
	{
		if (x == ' ') // split when see spacebar
		{
			cout << word << endl;
      store[a] = word;
      a++;
			word = "";
		}
		else {
			word = word + x;
		}
	}
  store[a] = word;
	cout << word <<"\n"<< endl;
}

// Driver code
int main()
{
	string str = "A:8 C:9 J:7 K:9";
  string store[5];
	split(str,store);
	//print store value
  /*for (int x=0; x<=5;x++){
     cout<<store[x]<<endl;
  }*/
	return 0;
}

```

![ผลการตัดข้อความด้วย spacebar](/files/-MTAPoXbbZQOFyj17714)

จากตัวอย่างด้านบน เป็นตัวอย่างการแบ่งข้อความเป็นส่วนๆเมื่อเจอ spacebar ในข้อความเราสามารถเปลี่ยนให้แบ่งข้อความด้วยอย่างอืนได้เช่นเครื่องหมาย  " : "&#x20;

```cpp

		if (x == ':') // split when see colon
		{
			cout << word << endl;
      store[a] = word;
      a++;
			word = "";
		}
		else {
			word = word + x;
		}
	
```

![ผลการตัดข้อความด้วย " : "](/files/-MTAQ9kBqjVKVynkSZXv)

{% hint style="info" %}
การระบุ format ของข้อความแบบนี้สามารถพบเห็นได้กับไฟล์ประเภท .csv, .json&#x20;
{% endhint %}

reference: [Geeksforgeeks](https://www.geeksforgeeks.org/split-a-sentence-into-words-in-cpp/)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.aic-eec.com/c-c++-for-embedded-programming/string-in-c++/split.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
