No announcements
Found 3974355 threads
-
5 Votes
How to pull the % number out of a string?
I don't know expresso expression builder and try not to use regex as often as possible since there are simpler methods to use usually.Answered | 7 Replies | 755 Views | Created by ryguy72 - Thursday, February 20, 2014 11:51 PM | Last reply by ryguy72 - Friday, February 21, 2014 2:59 PM -
3 Votes
Need Help - Pulling a value from a string
So, we have to take the string from that SQL DB, strip it apart, look for a matching item ID, and if we find one we increase the quantity and if not, add a new item ...Answered | 5 Replies | 1048 Views | Created by Nicolai Dutka - Thursday, January 31, 2013 7:19 PM | Last reply by Nicolai Dutka - Monday, February 4, 2013 3:24 PM -
1 Votes
JavaScript with RegEx
Hi RoninB, There is nothing wrong with you JS , it might be the problem of using DataAnnotations.ValidationAttribute ,and the MVC is ...Answered | 1 Replies | 6772 Views | Created by RoninB - Wednesday, May 23, 2012 1:25 PM | Last reply by Lisa Zhu - Friday, May 25, 2012 4:37 AM -
0 Votes
Using RegEx to parse string
If so, how about just split it with ","(include the double quotes)?Answered | 7 Replies | 1250 Views | Created by Serge Calderara - Monday, March 25, 2013 8:57 AM | Last reply by Mike Feng - Tuesday, March 26, 2013 7:22 AM -
0 Votes
How to execute stored procedure with a Multiline String Value?
You will need to change the results view from grid to text or use PRINT to see the carriage returns.Answered | 12 Replies | 9476 Views | Created by ASP808 - Tuesday, September 27, 2011 8:56 PM | Last reply by Naomi N - Tuesday, October 4, 2011 4:07 AM -
0 Votes
search for string using regex
This doesn't seem to be directly related to regular expressions, you just need to concatenate some strings to get the desired expression: var regex = new ...Answered | 2 Replies | 542 Views | Created by lisa_89 - Friday, April 25, 2014 1:51 PM | Last reply by lisa_89 - Friday, April 25, 2014 2:50 PM -
0 Votes
Getting part of string from given string using Regexe
c !Answered | 7 Replies | 3280 Views | Created by Louis Anand - Tuesday, December 8, 2009 6:31 AM | Last reply by Ahmad Mageed - Tuesday, December 8, 2009 5:37 PM -
1 Votes
How to use regular expression to filter out specified string from a template?
Use this Regex: (?Answered | 5 Replies | 3777 Views | Created by 沈世鈞 - Tuesday, May 31, 2011 10:45 AM | Last reply by 沈世鈞 - Wednesday, June 1, 2011 1:26 AM -
5 Votes
Splitting string using RegEx
Agree with Wolfgang, regex may not be the best fit here.Answered | 10 Replies | 7508 Views | Created by Nhancers - Thursday, May 27, 2010 2:49 PM | Last reply by Nhancers - Monday, November 29, 2010 10:42 AM -
0 Votes
regex date to string
DateTime.Today) { Console.WriteLine("Hello World!!!Answered | 1 Replies | 810 Views | Created by arkiboys - Friday, January 19, 2018 8:18 AM | Last reply by Sabah Shariq - Friday, January 19, 2018 9:38 AM -
1 Votes
how to find multiline string literals (@"bla") in .cs files (C# sourses)
Sometimes it's better not to try to figure out all the permutations something can >have but instead to try to get at the string indirectly.Answered | 3 Replies | 9468 Views | Created by akhisamiev - Monday, January 4, 2010 12:51 PM | Last reply by E McElroy - Friday, January 8, 2010 12:38 PM -
0 Votes
Extract string from text file using REGEX
\"" to get rid of the first quotation, but i'm not sure how to get rid of the end quotation so that it knows to go all the way to the quote but not include the quote as part of the ...Answered | 5 Replies | 8437 Views | Created by JAF126 - Monday, April 28, 2008 9:43 PM | Last reply by Lucian Baciu - Tuesday, April 29, 2008 3:23 PM -
0 Votes
How to validate data using regex?
Hi Lincoln_MA, I want to regex javascript data.Answered | 19 Replies | 1341 Views | Created by Henry Nguyễn - Monday, May 6, 2013 4:11 PM | Last reply by Henry Nguyễn - Sunday, May 12, 2013 2:31 AM -
1 Votes
Regex for strings
getting system.text.regularexpression.groupscollection cannot be converted to string for m.Groups["Dosage"].Value?Answered | 14 Replies | 5354 Views | Created by Harris001 - Wednesday, December 9, 2009 3:41 PM | Last reply by JohnGrove - Monday, December 14, 2009 7:47 PM -
0 Votes
How to pull out the values from multiline string using regex in JavaScript ?
So, how do we handle undefined values in this case I tried applying ternary operator in but it breaks at the split call.Answered | 9 Replies | 74 Views | Created by Anonymous - Wednesday, March 11, 2020 6:58 PM | Last reply by Anonymous - Sunday, March 15, 2020 6:28 PM -
0 Votes
regex for string between characters
The regex you want - #(.*)# That doesn't disregard the StartSearch and EndSearch characters in the returned ...Answered | 3 Replies | 561 Views | Created by Y a h y a - Friday, January 13, 2017 12:48 AM | Last reply by Mr. Monkeyboy - Friday, January 13, 2017 3:41 AM -
0 Votes
Javascript RegEx for field on textChange
<html> <head> <script> function myFunction() { var x=document.getElementById("fname"); var re = new ...Answered | 4 Replies | 1421 Views | Created by Shaun Harrison - Thursday, June 5, 2014 1:05 PM | Last reply by Shaun Harrison - Thursday, June 5, 2014 2:26 PM -
4 Votes
RegEx to split a string at letters
Here is how I used it: Dim result As String = Regex.Replace(myLine, "([0-9])([A-Z])", "$1 $2") ...Answered | 17 Replies | 6802 Views | Created by jwavila - Saturday, August 8, 2009 2:12 AM | Last reply by JohnGrove - Monday, August 10, 2009 4:31 PM -
0 Votes
regex find in string
using System; using System.Collections.Generic; using System.Linq; using System.Text; using ...Answered | 8 Replies | 2621 Views | Created by CanAnn - Wednesday, June 29, 2011 7:07 PM | Last reply by CanAnn - Thursday, June 30, 2011 12:03 AM -
1 Votes
Regex to remove words from string
. :) IList<string> blacklist = new ...Answered | 2 Replies | 4613 Views | Created by cololBIg - Wednesday, February 19, 2014 8:22 AM | Last reply by Eyal Solnik - Wednesday, February 19, 2014 9:46 AM - Items 1 to 20 of 3974355 Next ›
No announcements