Buy Questpond's video subscriptions on
huge discount
.
Online: 661
Home
Articles
Interviews
Forums
For Beginners
Popular Questions
ITIL Career Advice
PMP Career Advice
Career Advices
Codes
Videos
ASP.NET
ASP.NET MVC
Android Intel XDK
Sql Server
AngularJS
Bootstrap
Backbone.JS
MongoDB
LESS (CSS)
jQuery
WPF
WWF
SSIS
LightSwitch
Tutorials
News
ASP.NET MVC
|
Be Interview Ready
|
Top Performers
|
DNF MVP
|
Top Posts
|
Winners
|
Subscribe
|
Catalogs
Welcome Guest !
Register
Login
Home
>
Forums
>
Regular Expressions
>
Loading ...
Parse a troff "record" or file
Posted by
Satchwinston
under
Regular Expressions
on 4/17/2013 |
Points: 10
| Views : 3735 | Status :
[Member]
| Replies : 2
Write New Post
|
Search Forums
|
Resolved Posts
|
Un Answered Posts
|
Forums Home
I need to split something like the following:
col-data 354 12/27/2013 { 56} {$ 12.25} {acme inc.}
into:
col-data
354
12/27/2013
56
$ 12.25
acme inc.
I can't deal with the contents inside the { }. I end up splitting according to the spaces.
Reply
|
Reply with Attachment
Alert Moderator
Responses
Posted by:
harikrishna149-10896
on: 4/18/2013
[Member]
Starter
|
Points: 25
0
Hi..
check the below code
default.aspx
------------------
protected void Page_Load(object sender, EventArgs e)
{
string s = "col-data 354 12/27/2013 { 56} {$ 12.25} {acme inc.}";
foreach (string s1 in s.Split('{'))
{
string[] s2;
if (s1.Contains('}'))
{
s2 = s1.Split('}');
for (int i = 0; i < s2.Count(); i++)
{
Response.Write(s2[i]);
}
Response.Write("<br/>");
}
else
{
s2 = s1.Split(' ');
for (int i = 0; i < s2.Count(); i++)
{
if (s2[i] != "")
{
Response.Write(s2[i]);
Response.Write("<br/>");
}
}
}
}
}
Output :
---------------------
col-data
354
12/27/2013
56
$ 12.25
acme inc.
Thanks & Regards
Hari Krishna
Satchwinston
, if this helps please
login
to
Mark As Answer
. |
Alert Moderator
Posted by:
Satchwinston
on: 4/18/2013
[Member]
Starter
|
Points: 25
0
thanks, but I was looking for a reg ex solution. I think the way to go is to perform a match instead of a split.
Satchwinston
, if this helps please
login
to
Mark As Answer
. |
Alert Moderator
Login to post response
Latest Posts
How to get the exact property name while getting error
(0)
PDB file is not showing Line Number in dot net application hosted on server
(0)
Both Strings morethan 5 letters in length end of the words one vowel and one consonent is different
(0)
how to check Any adjacent letters transposed between two strings(ex: JOHN, JHON)
(1)
can't receive data after success login ?
(1)
Implement Multi-Tenant in Azure Logic Apps
(0)
Why ASP.Net Core 7.0 Web API showing as Connection refused?
(0)
Iterating over columns of dataframe and print as rows in Python Django
(0)
More ...