 |
|
ทำยังไงถึงจะตรวจสอบคำศัพท์ในข้อความ โดยจะเก็บค่าที่ได้ไปทำอย่างอื่น |
|
 |
|
|
 |
 |
|
ถ้าใช้ if ก็พอมีทางอยู่ โดยใช้ https://msdn.microsoft.com/en-us/library/dy85x1sa%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396
|
 |
 |
 |
 |
Date :
2016-03-09 08:36:30 |
By :
ห้ามตอบเกินวันละ 2 กระทู้ |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
มันคือการ Replace ข้อความไม่ใช่เหรอครับ
เพราะต้องการเปลี่ยนคำหนึ่งคำเป็นอีกคำ หรือผมเข้าใจผิดไป ?
ถ้าจะตรวจสอบว่ามีคำที่ต้องการอยู่ในประโยคที่ส่งเข้ามาลองใช้คำสั่ง indexOf ดูครับ
เมื่อเจอว่ามีคำนี้อยู่ในประโยคมันจะส่ง index ตำแหน่งเริ่มต้นของคำๆนั้นกลับมาให้ครับ (>=0) ถ้าไม่มีก็ส่งกลับมาเป็น -1
|
 |
 |
 |
 |
Date :
2016-03-09 14:15:35 |
By :
deksoke |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
หากจะมองให้แง่ของการเลือกเหตการณ์(Select Case )
ขอให้มองการ KeyDown ดูครับ
กระบวนการตั้งแต่ เรา KeyDown(Input)มันลงไปไปยันที่มันแสดงผล(Output)
Code (VB.NET)
Private Sub Form1_KeyDown(sender As Object, e As KeyEventArgs) Handles MyBase.KeyDown
End Sub
หากต้องการกระชับ หรือ จำกัดขอบเขต ก็แค่ประกาศ Enum ไว้
Code (VB.NET)
Private Sub Form1_KeyDown(sender As Object, e As KeyEventArgs) Handles MyBase.KeyDown
Select Case (e.KeyCode)
Case Keys.A
Case Keys.B
Case Keys.C
Case Keys.D
Case Else
End Select
End Sub
Keys.A - Keys.D คือ Enum ที่ได้ประกาศไว้ เพื่อให้ทางเลือกนั้นแคบลง
ในทางเลือกอาจจะมี ทางเลือก ซ้อนกันไปเรื่อยๆแล้วแต่รูปแบบการเขียนของคนนั้นๆ ครับ
|
 |
 |
 |
 |
Date :
2016-03-09 14:38:33 |
By :
lamaka.tor |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เหตุการณ์บนรถ "อุ้ยคลำคนแก่ ท่าทางใจดี"
Quote:ฟ้ามืดมัวหม่น เมฆฝนครึ้มดำ
เสียงพระอ่านทำ ขออุ้ยคลำไปดี
จรัญ : อ้ายคนสึ่งตึง
xxx: สึ่งตึงหมายความว่าอย่างไร?
ผม: เป็นคำหยอก ประมาณว่า "สาวให้ท่า" แต่ไม่มีปัญญาจีบ
ถ้ามันมามากขนาดนั้น มันก็ต้องมี Algorithm เป็นตัวช่วย
Trie
Code (C#)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Trie
{
public class TrieNode
{
public string RemainingKey = "";
public string Value = null;
public TrieNode[] Children = null;
// Add a value to this node's subtrie.
public void AddValue(string newKey, string newValue)
{
int index;
// If the remaining new key is not blank and matches
// the remaining node key, place the value here.
if ((newKey.Length > 0) && (newKey == RemainingKey))
{
Value = newValue;
return;
}
// If the remaining new key is blank and
// so is the remaining node key, place the value here.
if ((newKey.Length == 0) && (RemainingKey.Length == 0))
{
Value = newValue;
return;
}
// If the new key is blank but the node's remaining key isn't blank,
// move the node's remaining key into a child and place the value here.
if ((newKey.Length == 0) && (RemainingKey.Length > 0))
{
// This must be a leaf node so give it children.
Children = new TrieNode[26];
index = RemainingKey[0] - 'A';
Children[index] = new TrieNode();
Children[index].RemainingKey = RemainingKey.Substring(1);
Children[index].Value = Value;
RemainingKey = "";
Value = newValue;
return;
}
// We need a child node.
if (Children == null)
{
// Make the children.
Children = new TrieNode[26];
// See if we have a remaining key.
if (RemainingKey.Length > 0)
{
// Move this into the appropriate child.
index = RemainingKey[0] - 'A';
Children[index] = new TrieNode();
Children[index].RemainingKey = RemainingKey.Substring(1);
Children[index].Value = Value;
RemainingKey = "";
Value = null;
}
}
// Search the appropriate subtrie.
index = newKey[0] - 'A';
if (Children[index] == null)
{
// This child doesn't exist. Make it and
// let it represent the rest of the new key.
Children[index] = new TrieNode();
Children[index].RemainingKey = newKey.Substring(1);
Children[index].Value = newValue;
return;
}
// Search the appropriate subtrie.
Children[index].AddValue(newKey.Substring(1), newValue);
}
// Find a value in this node's subtrie.
public string FindValue(string targetKey)
{
// If the remaining key matches the
// remaining node key, return this node's value.
if (targetKey == RemainingKey) return Value;
// Search the appropriate child.
if (Children == null) return null;
int index = targetKey[0] - 'A';
if (Children[index] == null) return null;
return Children[index].FindValue(targetKey.Substring(1));
}
// Return a textual representation of this subtrie.
public override string ToString()
{
return MakeString('-', 0);
}
// Return a textual representation for this subtrie.
// Variable letter is this node's letter.
private string MakeString(char letter, int indent)
{
// Start with our value.
string result = new string(' ', indent);
result += letter;
if (RemainingKey.Length > 0) result += " -> " + RemainingKey;
if (Value != null) result += " (" + Value + ")";
result += Environment.NewLine;
// Add the child values if we have any.
if (Children != null)
{
for (int i = 0; i < 26; i++)
{
if (Children[i] != null)
{
char ch = (char)('A' + i);
result += Children[i].MakeString(ch, indent + 2);
}
}
}
return result;
}
}
}
Code (C#)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Trie
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
// The root of the trie.
private TrieNode Root = new TrieNode();
// Add a value to the trie.
private void addButton_Click(object sender, EventArgs e)
{
string key = keyTextBox.Text.ToUpper();
if (key.Length == 0)
{
MessageBox.Show("Key must not be blank");
keyTextBox.Focus();
return;
}
string value = valueTextBox.Text;
if (value.Length == 0)
{
MessageBox.Show("Value must not be blank");
valueTextBox.Focus();
return;
}
Root.AddValue(key, value);
trieTextBox.Text = Root.ToString();
trieTextBox.Select(0, 0);
keyTextBox.Clear();
keyTextBox.Focus();
valueTextBox.Clear();
}
// Find a value to the trie.
private void findButton_Click(object sender, EventArgs e)
{
string key = keyTextBox.Text.ToUpper();
string value = Root.FindValue(key);
if (value == null) valueTextBox.Text = "null";
else valueTextBox.Text = value;
trieTextBox.Text = Root.ToString();
trieTextBox.Select(0, 0);
keyTextBox.Focus();
keyTextBox.Select(0, keyTextBox.Text.Length);
}
// Uncomment to build a tree at startup for testing.
private void Form1_Load(object sender, EventArgs e)
{
//Root.AddValue("หำ", "29");
//Root.AddValue("หำน้อย", "36");
//Root.AddValue("WANTED", "10");
//Root.AddValue("WAN", "18");
//Root.AddValue("หำเล็ก", "72");
trieTextBox.Text = Root.ToString();
trieTextBox.Select(0, 0);
}
}
}
|
 |
 |
 |
 |
Date :
2016-03-10 12:38:47 |
By :
หน้าฮี |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
การประกาศตัวแปรแบบนี้ก็ใช้คำหยอกได้เหมือนกันว่า "อ้ายคนสึ่งตึง"
Code (VB.NET)
Dim MInput As Object 'ประโยคที่ได้รับ
Dim MOutput As Object 'ประโยคที่จะส่งออก
Dim UName As Object 'ชื่อผู้สนทนา
|
 |
 |
 |
 |
Date :
2016-03-10 12:44:43 |
By :
หน้าฮี |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|