Skip to main content
simply more productive
The Data Specialist

✅ Easy data integration - import/export
✅ No programming required thanks to visual modeling
✅ Simple ETL tool with versatile options

Flowheater Chart

Net Script LIKE

More
7 years 9 months ago #3486 by JD Cox
Net Script LIKE was created by JD Cox
I know the problem is 'if (tag.contains(swholesale))', what can I do to make this work
//////////////////////////////////////////////////////////////////////////////////////////
public object DoWork()
{
//string value something like 'DANE, Supply Company, wholesale'
//i'm looking for the tag 'wholesale'

string tag = (string)InValues[0].GetString();
string swholesale = "wholesale";
int icid = 0;

if (tag.contains(swholesale))
{
icid = 205;
}
else
{
icid = 207;
}
return icid;
}

Please Log in or Create an account to join the conversation.

More
7 years 9 months ago - 7 years 9 months ago #3487 by FlowHeater-Team
Replied by FlowHeater-Team on topic Net Script LIKE
Hi JD,

you need the IndexOf method. Attached you´ll find a short example.

C# script example
Code:
public object DoWork() { string tag = (string)InValues[0].GetString(); string swholesale = "wholesale"; int icid = 0; // StringComparison.OrdinalIgnoreCase = ignore Upper/Lower case if (tag.IndexOf(swholesale, StringComparison.OrdinalIgnoreCase) >= 0) { icid = 205; } else { icid = 207; } return icid; }


File Attachment: File Name: dotnet-indexof.zip
File Size:1.86 KB

Best wishes
Robert Stark
Last edit: 7 years 9 months ago by FlowHeater-Team.

Please Log in or Create an account to join the conversation.

More
7 years 9 months ago #3488 by JD Cox
Replied by JD Cox on topic Net Script LIKE
As always, Robert, thank you.
It works great, and thanks for adding in the ignore case.
They only have three tags for now that I manage with a stack of IfThenElses.
This is much easier to manage and cleaner.
Thanks, JD

Please Log in or Create an account to join the conversation.

Time to create page: 0.133 seconds
FlowHeater Logo
FlowHeater - The Data Specialist
Efficient data integration and transformation with FlowHeater – the perfect solution for a seamless transfer of your data.
Legal information
Support & Contact
Contact

Phone:
0951 / 9933 9792

eMail:
info@flowheater.net


Copyright © 2009-2026 by FlowHeater GmbH. All rights reserved.