473,803 Members | 3,857 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to parse/format repeated strings in data?

List,

I call this a "Parsing Problem", but it could be called formatting or
regular expressions as well. I have a set of data that was formerly
processed on an OS390 (hence a lot of horsepower). Now, it has been
moved to a database from where I can call it via a web service with a
C# client. The data looks like this:

ABLATION ENDOMETRIAL (HYSTEROSCOPIC)
ABLATION HEART (CONDUCTION DEFECT)
ABLATION HEART (CONDUCTION DEFECT) WITH CATHETER
ABLATION INNER EAR (CRYOSURGERY) (ULTRASOUND)
ABLATION INNER EAR (CRYOSURGERY) (ULTRASOUND) BY INJECTION
ABLATION LESION HEART BY PERIPHERALLY INSERTED CATHETER
ABLATION LESION HEART ENDOVASCULAR APPROACH
ABLATION LESION HEART MAZE PROCEDURE (COX-MAZE) ENDOVASCULAR APPROACH
ABLATION LESION HEART MAZE PROCEDURE (COX-MAZE) OPEN (TRANS-THORACIC)
APPROACH
ABLATION LESION HEART MAZE PROCEDURE (COX-MAZE) TRANS-THORACIC APPROACH
ABLATION PITUITARY
ABLATION PITUITARY BY COBALT-60
ABLATION PITUITARY BY IMPLANTATION (STRONTIUM-YTTRIUM) (Y) NEC
ABLATION PITUITARY BY PROTON BEAM (BRAGG PEAK)
ABLATION PROSTATE (ANAT = 59.02) BY LASER, TRANSURETHRAL
ABLATION PROSTATE (ANAT = 59.02) BY RADIOFREQUENCY THERMOTHERAPY
ABLATION PROSTATE (ANAT = 59.02) BY TRANSURETHRAL NEEDLE ABLATION
(TUNA)
ABLATION PROSTATE (ANAT = 59.02) PERINEAL BY CRYOABLATION
ABLATION PROSTATE (ANAT = 59.02) PERINEAL BY RADICAL CRYOSURGICAL
ABLATION (RCSA)
ABLATION PROSTATE (ANAT = 59.02) TRANSURETHRAL BY LASER
ABLATION PROSTATE (ANAT = 59.02) TRANSURETHRAL CRYOABLATION
ABLATION PROSTATE (ANAT = 59.02) TRANSURETHRAL RADICAL CRYOSURGICAL
ABLATION (RCSA)
ABLATION TISSUE HEART - SEE ABLATION, LESION, HEART
ABLATION VESICLE NECK (ANAT = 60.02)

I need to format 24000 lines of such data into a tree that looks like
what is below. The key is that whatever substring is repeated across
all the records becomes a heading. For example, ABLATION is common to
all the rows and so is the heading for all of them. Heart is common to
two and so is heading with a sub-entry. Any ideas on efficient
approaches in C# would be greatly appreciated.

ABLATION

ENDOMETRIAL (HYSTEROSCOPIC)

HEART (CONDUCTION DEFECT)

WITH CATHETER

INNER EAR (CRYOSURGERY) (ULTRASOUND)

BY INJECTION

LESION HEART

BY PERIPHERALLY INSERTED CATHETER

ENDOVASCULAR APPROACH

MAZE PROCEDURE (COX-MAZE)

ENDOVASCULAR APPROACH

OPEN (TRANS-THORACIC) APPROACH

TRANS-THORACIC APPROACH

PITUITARY

BY

COBALT-60

IMPLANTATION (STRONTIUM-YTTRIUM) (Y) NEC

PROTON BEAM (BRAGG PEAK)

PROSTATE (ANAT = 59.02)

BY

LASER, TRANSURETHRAL

RADIOFREQUENCY THERMOTHERAPY

TRANSURETHRAL NEEDLE ABLATION (TUNA)

PERINEAL BY

CRYOABLATION

RADICAL CRYOSURGICAL ABLATION (RCSA)

TRANSURETHRAL

BY LASER

CRYOABLATION

RADICAL CRYOSURGICAL ABLATION (RCSA)

TISSUE HEART - SEE ABLATION, LESION, HEART

VESICLE NECK (ANAT = 60.02)

Nov 16 '05 #1
7 1653
Here's my simple solution:

Read a line.
use String.Split(" ") to split each line up into a collection of words.
put each word in separate nodes in a hierarchical-tree collection.

When all line are entered, scan the tree and for each node with only one
child, combine parent & child.
The bad news is that .Net does not have a hierarchical-tree collection
type.

The good news is that it actually does, sort-of....
The TreeView control (used to display trees like the left panel of
Windows Explorer) will work, and there's no reason why it needs to be
displayed. It could even be used in a console app.

"Mike" <ms********@cha rter.net> wrote in message
news:11******** *************@l 41g2000cwc.goog legroups.com...
List,

I call this a "Parsing Problem", but it could be called formatting or
regular expressions as well. I have a set of data that was formerly
processed on an OS390 (hence a lot of horsepower). Now, it has been
moved to a database from where I can call it via a web service with a
C# client. The data looks like this:

ABLATION ENDOMETRIAL (HYSTEROSCOPIC)
ABLATION HEART (CONDUCTION DEFECT)
ABLATION HEART (CONDUCTION DEFECT) WITH CATHETER
ABLATION INNER EAR (CRYOSURGERY) (ULTRASOUND)
ABLATION INNER EAR (CRYOSURGERY) (ULTRASOUND) BY INJECTION
ABLATION LESION HEART BY PERIPHERALLY INSERTED CATHETER
ABLATION LESION HEART ENDOVASCULAR APPROACH
ABLATION LESION HEART MAZE PROCEDURE (COX-MAZE) ENDOVASCULAR APPROACH
ABLATION LESION HEART MAZE PROCEDURE (COX-MAZE) OPEN (TRANS-THORACIC)
APPROACH
ABLATION LESION HEART MAZE PROCEDURE (COX-MAZE) TRANS-THORACIC APPROACH
ABLATION PITUITARY
ABLATION PITUITARY BY COBALT-60
ABLATION PITUITARY BY IMPLANTATION (STRONTIUM-YTTRIUM) (Y) NEC
ABLATION PITUITARY BY PROTON BEAM (BRAGG PEAK)
ABLATION PROSTATE (ANAT = 59.02) BY LASER, TRANSURETHRAL
ABLATION PROSTATE (ANAT = 59.02) BY RADIOFREQUENCY THERMOTHERAPY
ABLATION PROSTATE (ANAT = 59.02) BY TRANSURETHRAL NEEDLE ABLATION
(TUNA)
ABLATION PROSTATE (ANAT = 59.02) PERINEAL BY CRYOABLATION
ABLATION PROSTATE (ANAT = 59.02) PERINEAL BY RADICAL CRYOSURGICAL
ABLATION (RCSA)
ABLATION PROSTATE (ANAT = 59.02) TRANSURETHRAL BY LASER
ABLATION PROSTATE (ANAT = 59.02) TRANSURETHRAL CRYOABLATION
ABLATION PROSTATE (ANAT = 59.02) TRANSURETHRAL RADICAL CRYOSURGICAL
ABLATION (RCSA)
ABLATION TISSUE HEART - SEE ABLATION, LESION, HEART
ABLATION VESICLE NECK (ANAT = 60.02)

I need to format 24000 lines of such data into a tree that looks like
what is below. The key is that whatever substring is repeated across
all the records becomes a heading. For example, ABLATION is common to
all the rows and so is the heading for all of them. Heart is common to
two and so is heading with a sub-entry. Any ideas on efficient
approaches in C# would be greatly appreciated.

ABLATION

ENDOMETRIAL (HYSTEROSCOPIC)

HEART (CONDUCTION DEFECT)

WITH CATHETER

INNER EAR (CRYOSURGERY) (ULTRASOUND)

BY INJECTION

LESION HEART

BY PERIPHERALLY INSERTED CATHETER

ENDOVASCULAR APPROACH

MAZE PROCEDURE (COX-MAZE)

ENDOVASCULAR APPROACH

OPEN (TRANS-THORACIC) APPROACH

TRANS-THORACIC APPROACH

PITUITARY

BY

COBALT-60

IMPLANTATION (STRONTIUM-YTTRIUM) (Y) NEC

PROTON BEAM (BRAGG PEAK)

PROSTATE (ANAT = 59.02)

BY

LASER, TRANSURETHRAL

RADIOFREQUENCY THERMOTHERAPY

TRANSURETHRAL NEEDLE ABLATION (TUNA)

PERINEAL BY

CRYOABLATION

RADICAL CRYOSURGICAL ABLATION (RCSA)

TRANSURETHRAL

BY LASER

CRYOABLATION

RADICAL CRYOSURGICAL ABLATION (RCSA)

TISSUE HEART - SEE ABLATION, LESION, HEART

VESICLE NECK (ANAT = 60.02)

Nov 16 '05 #2
James,

I will put this together tomorrow and see how it works. I had thought
of using the Split, but your idea of scanning the tree to look for each
node with only one child and then combining the two had not at all.
I'll fill you in on how it works.

Thanks,

Mike

James Curran wrote:
Here's my simple solution:

Read a line.
use String.Split(" ") to split each line up into a collection of words. put each word in separate nodes in a hierarchical-tree collection.
When all line are entered, scan the tree and for each node with only one child, combine parent & child.
The bad news is that .Net does not have a hierarchical-tree collection type.

The good news is that it actually does, sort-of....
The TreeView control (used to display trees like the left panel of Windows Explorer) will work, and there's no reason why it needs to be
displayed. It could even be used in a console app.

"Mike" <ms********@cha rter.net> wrote in message
news:11******** *************@l 41g2000cwc.goog legroups.com...
List,

I call this a "Parsing Problem", but it could be called formatting or regular expressions as well. I have a set of data that was formerly processed on an OS390 (hence a lot of horsepower). Now, it has been moved to a database from where I can call it via a web service with a C# client. The data looks like this:

ABLATION ENDOMETRIAL (HYSTEROSCOPIC)
ABLATION HEART (CONDUCTION DEFECT)
ABLATION HEART (CONDUCTION DEFECT) WITH CATHETER
ABLATION INNER EAR (CRYOSURGERY) (ULTRASOUND)
ABLATION INNER EAR (CRYOSURGERY) (ULTRASOUND) BY INJECTION
ABLATION LESION HEART BY PERIPHERALLY INSERTED CATHETER
ABLATION LESION HEART ENDOVASCULAR APPROACH
ABLATION LESION HEART MAZE PROCEDURE (COX-MAZE) ENDOVASCULAR APPROACH ABLATION LESION HEART MAZE PROCEDURE (COX-MAZE) OPEN (TRANS-THORACIC) APPROACH
ABLATION LESION HEART MAZE PROCEDURE (COX-MAZE) TRANS-THORACIC APPROACH ABLATION PITUITARY
ABLATION PITUITARY BY COBALT-60
ABLATION PITUITARY BY IMPLANTATION (STRONTIUM-YTTRIUM) (Y) NEC
ABLATION PITUITARY BY PROTON BEAM (BRAGG PEAK)
ABLATION PROSTATE (ANAT = 59.02) BY LASER, TRANSURETHRAL
ABLATION PROSTATE (ANAT = 59.02) BY RADIOFREQUENCY THERMOTHERAPY
ABLATION PROSTATE (ANAT = 59.02) BY TRANSURETHRAL NEEDLE ABLATION
(TUNA)
ABLATION PROSTATE (ANAT = 59.02) PERINEAL BY CRYOABLATION
ABLATION PROSTATE (ANAT = 59.02) PERINEAL BY RADICAL CRYOSURGICAL
ABLATION (RCSA)
ABLATION PROSTATE (ANAT = 59.02) TRANSURETHRAL BY LASER
ABLATION PROSTATE (ANAT = 59.02) TRANSURETHRAL CRYOABLATION
ABLATION PROSTATE (ANAT = 59.02) TRANSURETHRAL RADICAL CRYOSURGICAL
ABLATION (RCSA)
ABLATION TISSUE HEART - SEE ABLATION, LESION, HEART
ABLATION VESICLE NECK (ANAT = 60.02)

I need to format 24000 lines of such data into a tree that looks like what is below. The key is that whatever substring is repeated across all the records becomes a heading. For example, ABLATION is common to all the rows and so is the heading for all of them. Heart is common to two and so is heading with a sub-entry. Any ideas on efficient
approaches in C# would be greatly appreciated.

ABLATION

ENDOMETRIAL (HYSTEROSCOPIC)

HEART (CONDUCTION DEFECT)

WITH CATHETER

INNER EAR (CRYOSURGERY) (ULTRASOUND)

BY INJECTION

LESION HEART

BY PERIPHERALLY INSERTED CATHETER

ENDOVASCULAR APPROACH

MAZE PROCEDURE (COX-MAZE)

ENDOVASCULAR APPROACH

OPEN (TRANS-THORACIC) APPROACH

TRANS-THORACIC APPROACH

PITUITARY

BY

COBALT-60

IMPLANTATION (STRONTIUM-YTTRIUM) (Y) NEC

PROTON BEAM (BRAGG PEAK)

PROSTATE (ANAT = 59.02)

BY

LASER, TRANSURETHRAL

RADIOFREQUENCY THERMOTHERAPY

TRANSURETHRAL NEEDLE ABLATION (TUNA)

PERINEAL BY

CRYOABLATION

RADICAL CRYOSURGICAL ABLATION (RCSA)

TRANSURETHRAL

BY LASER

CRYOABLATION

RADICAL CRYOSURGICAL ABLATION (RCSA)

TISSUE HEART - SEE ABLATION, LESION, HEART

VESICLE NECK (ANAT = 60.02)


Nov 16 '05 #3
If you want to build your own data structure to hold this, a hash table
of hash tables (of hash tables of hash tables...) would probably be
best.

public class HashtableString Tree
{
private string name;
private bool entry;
private Hashtable table;

public HashtableString Tree(string name)
{
this.name = name;
this.table = new Hashtable();
this.entry = false;
}

public void Add(string[] splitString)
{
Add(splitString , 0);
}

public void Add(string[] splitString, int startIndex)
{
int remainingLength = splitString.Len gth - startIndex;
if (remainingLengt h == 1)
{
this.entry = true;
}
else if (remainingLengt h > 1)
{
HashtableString Tree nextLevel =
this.table[splitString[startIndex]];
if (nextLevel == null)
{
HashtableString Tree nextLevel = new
HashtableString Tree(splitStrin g[startIndex]);
this.table[splitString[startIndex]] = nextLevel;
}
nextLevel.Add(s plitString, startIndex + 1);
}
}

public string Collapse()
{
if (this.table != null)
{
HashtableString Tree nextLevel = null;
Hashtable newTable = new Hashtable();
foreach (DictionaryEntr y de in this.table)
{
nextLevel = (HashtableStrin gTree)de.Value;
newTable[nextLevel.Colla pse()] = nextLevel;
}
this.table = newTable;
if (!this.entry && this.table.Coun t == 1)
{
if (!nextLevel.ent ry && nextLevel.table .Count == 0)
{
this.table.Clea r();
this.name = this.name + " " + nextLevel.name;
this.entry = true;
}
}
else if (nextLevel.entr y == null && nextLevel.table .Count
== 1)
{
this.table = nextLevel.table ;
this.name = this.name + " " + nextLevel.name;
}
}
return this.name;
}
}

You can then walk the tree recursively doing whatever you like. If a
node in the tree has a non-null "entry", it means that at least one
string terminated there. If it has a null "entry" then it means that
all strings had more words in them. For example

ABLATION PITUITARY
ABLATION PITUITARY BY COBALT-60
ABLATION PITUITARY BY IMPLANTATION (STRONTIUM-YTTRIUM) (Y) NEC
ABLATION PITUITARY BY PROTON BEAM (BRAGG PEAK)

will result in a top-level node containing one entry in the "table":
"ABLATION". The "entry" of that node will be false because there were
no entries containing "ABLATION" and nothing more. The
HashtableString Tree stored in the "table" under "ABLATION" will have an
"entry" of true, because there was one entry that ended in the word
"PITUITARY" and went no further. However, the "table" will also contain
one entry keyed on "PITUITARY" that contains a HashtableString Tree with
a false "entry" and a "table" with one entry: "BY", which points to
another HashtableString Tree with a false "entry" and three items in the
"table": "COBALT-60", "IMPLANTATI ON", and "PROTON BEAM", etc.

Calling Collapse() on the top-level node should combine the "ABLATION"
and "PITUITARY" nodes into a single "ABLATION PITUITARY" node, but also
make it impossible to add new entries correctly.

[WARNING: I have not tested this code. This is "off the cuff", as it
were.]

Nov 16 '05 #4
Bruce,

I am very interested in your idea. Just trying to wrap my mind around
how it works. It may take me a few days to understand and implement
it. Thanks! I'll let you and Bruce both know how this gets solved.

Nov 16 '05 #5
James,

In thinking about your suggestion some more, I find it difficult to see
how it will work correctly. In some cases the top-level node will have
no children and in others the top-level node will be a string composed
of more than the top node and one child. Rather, for example, with
Ablation, ABLATION actually has no children and in another example from
data I did not show, a top-level node is ACROMIOPLASTY (ANAT = 44.05)
which would be a node with multiple children from the split. Any ideas
on how to get around these?

Nov 16 '05 #6
I just noticed a bug in the Collapse routine. It should read:

public string Collapse()
{
HashtableString Tree nextLevel = null;
Hashtable newTable = new Hashtable();
foreach (DictionaryEntr y de in this.table)
{
nextLevel = (HashtableStrin gTree)de.Value;
newTable[nextLevel.Colla pse()] = nextLevel;
}
if (nextLevel != null)
{
this.table = newTable;
if (!this.entry && this.table.Coun t == 1)
{
if (!nextLevel.ent ry && nextLevel.table .Count == 0)
{
this.table.Clea r();
this.name = this.name + " " + nextLevel.name;
this.entry = true;
}
}
else if (nextLevel.entr y == null && nextLevel.table .Count
== 1)
{
this.table = nextLevel.table ;
this.name = this.name + " " + nextLevel.name;
}
}
}
return this.name;
}

Nov 16 '05 #7
Do you have a standard format for your lines? If so, you can set up a
Regular Expression and Split them that way. Since you're using this with a
Web Service anyway, what about converting it all to XML upon splitting? I
don't see the specific rules to your splitting here, but you should
definitely make sure you know exactly what you want split and how you want
it split prior to jumping in and coding it...

"Mike" <ms********@cha rter.net> wrote in message
news:11******** *************@g 14g2000cwa.goog legroups.com...
James,

In thinking about your suggestion some more, I find it difficult to see
how it will work correctly. In some cases the top-level node will have
no children and in others the top-level node will be a string composed
of more than the top node and one child. Rather, for example, with
Ablation, ABLATION actually has no children and in another example from
data I did not show, a top-level node is ACROMIOPLASTY (ANAT = 44.05)
which would be a node with multiple children from the split. Any ideas
on how to get around these?

Nov 16 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

22
872
by: Ram Laxman | last post by:
Hi all, I have a text file which have data in CSV format. "empno","phonenumber","wardnumber" 12345,2234353,1000202 12326,2243653,1000098 Iam a beginner of C/C++ programming. I don't know how to tokenize the comma separated values.I used strtok function reading line by line using fgets.but it gives some weird behavior.It doesnot stripout the "" fully.Could any body have sample code for the same so that it will be helfful for my...
2
4841
by: Peter Kirk | last post by:
Hi there I would like some help with parsing date strings to DateTime structures. I can see that DateTime has Parse and ParseExact methods - but I am not sure what is best for me to use, and what parameters I need to supply. I reveive a string from a web-form, which would look something like this: "31-12-1999 14:56:22"; and I need to parse it to a DateTime
8
5040
by: moondaddy | last post by:
I'm writing an app in vb.net 1.1 and I need to parse strings that look similar to the one below. All 5 rows will make up one string. I have a form where a use can copy/paste data like what you see below from excel, word, notepad, etc.. into a textbox on my form. I need to break each line into 2 numbers which I'll use as parameters for another function. in all cases each line will be separated with a vbNewline and in most cases the 2...
13
4249
by: DH | last post by:
Hi, I'm trying to strip the html and other useless junk from a html page.. Id like to create something like an automated text editor, where it takes the keywords from a txt file and removes them from the html page (replace the words in the html page with blank space) I'm new to python and could use a little push in the right direction, any ideas on how to implement this? Thanks!
6
8604
by: trevor | last post by:
Incorrect values when using float.Parse(string) I have discovered a problem with float.Parse(string) not getting values exactly correct in some circumstances(CSV file source) but in very similar circumstances(XML file source) and with exactly the same value it gets it perfectly correct all the time. These are the results I got, XML is always correct, CSV are only incorrect for some of the values (above about 0.01) but always gives the...
6
3524
by: Richard | last post by:
Which way would you guys recommened to best parse a multiline file which contains two fields seperated by a tab. In this case its the linux/proc/filesystems file a sample of which I have included below: nodev usbfs ext3 nodev fuse vfat ntfs nodev binfmt_misc
29
2913
by: gs | last post by:
let say I have to deal with various date format and I am give format string from one of the following dd/mm/yyyy mm/dd/yyyy dd/mmm/yyyy mmm/dd/yyyy dd/mm/yy mm/dd/yy dd/mmm/yy mmm/dd/yy
1
64212
AdrianH
by: AdrianH | last post by:
Assumptions I am assuming that you know or are capable of looking up the functions I am to describe here and have some remedial understanding of C programming. FYI Although I have called this article “How to Parse a File in C++”, we are actually mostly lexing a file which is the breaking down of a stream in to its component parts, disregarding the syntax that stream contains. Parsing is actually including the syntax in order to make...
3
21277
by: Peter Duniho | last post by:
I'm sure there's a good explanation for this, but I can't figure it out. I tried using DateTime.Parse() with a custom DateTimeFormatInfo instance, in which I'd replaced the DateTimeFormatInfo.FullDateTimePattern property with my custom format string: DateTimeFormatInfo dtfi = (DateTimeFormatInfo)DateTimeFormatInfo.InvariantCulture.Clone(); dtfi.FullDateTimePattern = "dd/MMM/yyyy:HH:mm:ss zzz";
0
9700
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10546
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10310
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10292
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10068
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7603
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5498
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5627
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4275
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.