Omgili - forum search, search forums  
  

Discussions about quotation marks

Displaying 1 - 10 out of 11,700 discussions.  
RSS Feed Options
Time Frame: (Any time)   Minimum number of replies: (2)   Minimum number of discussing users: (0)
  |  

Page: 1   2   3   4   5   6   7   8   9   10  
Keep this page open to be updated with the newest discussions automatically.
So I have a ruby script that parses HTML pages and saves the extracted string into a DB... but i'm getting weired charcters (usually question marks) instead of plain text... Eg : ‘SOME TEXT’ instead of 'Some Text' I've tried HTML entities and CGI:...
Started by on , 3 posts by 3 people.  
Ruby has is storing the Unicode escape sequences for quotation marks (instead of ASCII quotation ....
That the quotation marks in question are not the standard ASCII quotation marks but the Unicode ones .
Trying to split a line wherever "," appears (with the quotation marks), The problem is VB.NET uses " to start/end strings, so I tried using .Split(""",""") but that then splits it by " not ","
Started by on , 5 posts by 5 people.  
To escape the "-character....
I hope this helps.
Try something like this: Dim TestToSplit As String = "Foo"",""Bar" Dim Splitted() As String = TestToSplit.Split(New String() {""","""}, StringSplitOptions.None) I just tested it and got an array with Foo And Bar .
I have a value like this "Foo Bar" "Another Value" something else What RegEx expression will return the values enclosed in the quotation marks (e.g. Foo Bar and Another Value)?
Started by on , 6 posts by 6 people.  
Then, you use a language-specific mechanism to extract....
In general, the following regular expression fragment is what you are looking for: "(.*?)" This uses the non-greedy *? operator to capture everything up to but not including the next double quote .
Ask your Facebook Friends
For a web app I'm making, I'm going to be getting text strings coming in, occasionally which contain quotation marks. Because I am then going to be document.writing the string, they need to be changed either into apostrophes or escaped. How would I do...
Started by on , 4 posts by 4 people.  
\' Single quotation mark \" Double quotation mark \\ Backslash \b Backspace \f.
Other characters.
On my site, an encoded quote (%22) in url path causes "Illegal characters in path" error I want specify search URLs like so: www.site.com/search/%22Vitamin+C%22 %22 is an encoded quotation mark " I'm using a Asp.Net URL Routing and the route is specified...
Started by on , 3 posts by 3 people.  
If you have structured searches (a limited list of categories with names that conform to valid URL requirements or search by zip codes) then you could use the URL... .
For free-form search terms, you should use a QueryString parameter instead of a URL chunk .
Hi, I want to match the first number/word/string in quotation marks/list in the input with Regex. For example, it should match those: "hello world" gdfigjfoj sogjds -14.5 fdhdfdfi dfjgdlf test14 hfghdf hjgfjd (a (c b 7)) (3 4) "hi" Any ideas to a regex...
Started by on , 4 posts by 4 people.  
That cannot be done in regex - nothing that involves counting (except for non-standard lookaheads... .
[Edit] I missed that you wanted to count parentheses.
Any ideas to a regex or how can I start? You can start with any tutorial on basic regex, such as this .
I need to write a split function in JavaScript that splits a string into an array, on a comma...but the comma must not be enclosed in quotation marks ( ' and " ). Here are three examples and how the result (an array) should be: "peanut, butter, jelly"...
Started by on , 5 posts by 5 people.  
See also http://stackoverflow.com/questions/1293147/javascript-code-to-parse-csv-data....
Do a Google search on "Javascript CSV Parser" and you'll get lots of hits, many with complete scripts .
What you are asking for is essentially a Javascript CSV parser .
In my XAML file I want to display this text which contains double and single quotation marks: You shouldn't choose "Copy if New". None of these work: <TextBlock Text="You shouldn't choose "Copy if New":"/> <TextBlock Text="You shouldn't choose...
Started by on , 3 posts by 3 people.  
You should encode the special characters: <TextBlock Text='You shouldn't choose "Copy if New":'/> There are defined XML escapes " for " and ' for ' -- if the XML handling in XAML doesn't interpret those properly, then start... .
I thought that the quotation mark (") was simply a type of grouping marker but I'm debugging some NHibernate code and notice that while SELECT * FROM site WHERE site_id = 3; Works fine SELECT * FROM "site" WHERE site_id = 3; fails with a table or view...
Started by on , 4 posts by 4 people.  
Other_table" will work It should be added that identifiers in quotation marks may contain specialYou can use quote marks to delimit a table alias or a column alias, but your example is just simply.
Assume I have the following string: <script language="javascript"> var league = new Array( "Soccer","Germany - 2. Bundesliga","38542195","102","24 May 2009 14:00","24 May 2009 14:00","1X2","1","0" ); var matches = new Array( "125","1.FC Nurnberg...
Started by on , 7 posts by 7 people.  
I think you need to remove the " at the beginning and the end and split by "," string [] test=Regex.Split(s.SubString(1,s.length-2), "\",\""); Try the following: using System.Text.RegularExpressions; public static MatchCollection getMatches(String input... .
Page: 1   2   3   4   5   6   7   8   9   10  
More Information


Forum Search About Omgili Help Plugins Forum/Board Owners Privacy

i
In Title
In Topic
In Reply
Exclude
Boost