No announcements
Found 891181 threads
-
0 Votes
string parse
=Answered | 5 Replies | 1671 Views | Created by William256 - Monday, June 25, 2012 12:10 AM | Last reply by Noam B - Monday, June 25, 2012 11:12 AM -
3 Votes
Parse String
Success Cor TL;DR: If the subject is "Parse String", my answer is going to be "use ...Answered | 7 Replies | 1506 Views | Created by MDMoura - Monday, February 4, 2013 7:20 PM | Last reply by Wyck - Tuesday, February 5, 2013 7:23 PM -
4 Votes
Parse String to Dictionary<String, String>
I don't know what you need to accomplish, but if your goal is to parse the connection string, you can use ...Answered | 5 Replies | 11185 Views | Created by MDMoura - Sunday, October 10, 2010 1:56 AM | Last reply by Rene Volkmer - Friday, May 6, 2011 6:51 AM -
0 Votes
parsing string ????
How can I parse a string to an integer but using a difrent base or radix than 10?Answered | 1 Replies | 2445 Views | Created by Andy Norcisa - Tuesday, May 4, 2010 11:03 PM | Last reply by Reed Copsey, Jr - Tuesday, May 4, 2010 11:22 PM -
1 Votes
How to parse a ETL string
I was hoping a JSON parser like solution where in you parse and get 2 strings the first > one being the ID second one being the value.Answered | 7 Replies | 1137 Views | Created by ananda vardhana - Friday, May 17, 2019 3:15 AM | Last reply by ananda vardhana - Friday, May 24, 2019 5:01 AM -
0 Votes
How to parse string with string
If your input string always contains quotes, you need to take them into account: int startindex = str.IndexOf("SourcePath=\""); startindex ...Answered | 5 Replies | 1947 Views | Created by york Z - Wednesday, March 14, 2012 2:47 AM | Last reply by Louis.fr - Wednesday, March 14, 2012 2:10 PM -
1 Votes
Dynamic String Parsing
Public Interface IParser Function Parse(input as String) as Object End Interface Public Enum DeviceType SomeDevice = 0 SomeOtherDevice = 1 End ...Answered | 4 Replies | 2838 Views | Created by katghoti - Thursday, October 22, 2009 2:21 PM | Last reply by Martin Xie - MSFT - Wednesday, October 28, 2009 7:17 AM -
1 Votes
Parsing a String
you need to share some more sample values so that we can find a pattern what you actually want to and not just getting 24 from this string...Answered | 5 Replies | 1957 Views | Created by cherriesh - Thursday, August 1, 2013 4:43 AM | Last reply by Prajesh - Thursday, August 1, 2013 10:02 PM -
1 Votes
Parse' is not a member of "String'
There is(was) a Public Property DayOfWeek as String that I had deleted in app #1.Answered | 7 Replies | 2833 Views | Created by mwalsh62 - Wednesday, March 14, 2012 10:32 PM | Last reply by mwalsh62 - Wednesday, March 14, 2012 11:55 PM -
0 Votes
Parse null string
Check link ...Answered | 2 Replies | 17865 Views | Created by Xaria - Thursday, April 1, 2010 5:48 AM | Last reply by Amit Bansal - Thursday, April 1, 2010 10:36 AM -
6 Votes
Parse string
Hi, I am using SQL Server 2008 and need to parse a string in a T-SQL query to include it in a view.Answered | 4 Replies | 3033 Views | Created by Chri3s - Thursday, July 12, 2012 6:37 PM | Last reply by Chri3s - Friday, July 13, 2012 7:46 PM -
0 Votes
Parsing string
Something like this, I tried on 1 and 2 path strings.Answered | 5 Replies | 482 Views | Created by Y a h y a - Monday, October 26, 2015 2:12 AM | Last reply by dbasnett - Monday, October 26, 2015 9:41 AM -
0 Votes
Need String Parsing Help
I'm trying to parse the last name from a string where the name may or may not have a middle initial/ name.Answered | 3 Replies | 3954 Views | Created by cdun2 - Monday, June 28, 2010 8:30 PM | Last reply by cdun2 - Wednesday, June 30, 2010 8:04 PM -
1 Votes
How to parse varying strings
From what I see of your sample strings, you always have a combination of the words "DECL", "Global" and "E6POS", followed by "Xhs=", and then a list of ...Answered | 3 Replies | 2186 Views | Created by mookie_jones - Thursday, September 20, 2012 2:52 AM | Last reply by mookie_jones - Friday, September 21, 2012 4:17 PM -
0 Votes
parsing comma delimited strings
Hello DaveDB, String parsing is better and more efficienctly handled in the CLR.Answered | 4 Replies | 4788 Views | Created by DaveDB - Monday, February 22, 2010 5:09 PM | Last reply by Adam_Turner - Monday, February 22, 2010 5:50 PM -
0 Votes
Parsing String of Varying Formats
It allows me to parse everything that is like AA-#A##A### or AAA#A##A### into the organizational units I need and not have to repeat all the abnormally formatted ...Answered | 7 Replies | 1796 Views | Created by Lee Markum - Wednesday, January 9, 2013 4:24 PM | Last reply by Lee Markum - Friday, January 11, 2013 7:26 PM -
0 Votes
String Parsing
But the first way will work, only when there will not be any '.' chartacter in input string...Answered | 2 Replies | 4682 Views | Created by jr.sql - Sunday, September 19, 2010 9:03 PM | Last reply by ramireddy - Monday, September 20, 2010 4:25 AM -
3 Votes
String Parsing and correct to actual string
I want to parse everything inside address and change it to the correct address with name of places,area etc.Answered | 2 Replies | 701 Views | Created by Badrinath janghel - Wednesday, March 15, 2017 7:06 AM | Last reply by spaghettidba - Wednesday, March 15, 2017 9:46 AM -
1 Votes
parsing a string
Take a look at http://sqlblog.com/blogs/aaron_bertrand/archive/2010/07/07/splitting-a-list-of-integers-another-roundup.aspx for parsing the list of values.Answered | 1 Replies | 6821 Views | Created by sharmt - Tuesday, August 17, 2010 6:21 PM | Last reply by Naomi N - Tuesday, August 17, 2010 6:53 PM -
0 Votes
Parsing Custom string to DateTime
string strDate = "2012/09/05 10:46:39+22"; string strOffSet = strDate.Substring(strDate.Length - 2); float zone = (float)int.Parse(strOffSet) ...Answered | 6 Replies | 1497 Views | Created by akhilrajau - Wednesday, September 5, 2012 5:59 AM | Last reply by Joel Engineer - Wednesday, September 5, 2012 1:39 PM - Items 1 to 20 of 891181 Next ›
No announcements