kjvbible1611
Member
- Messages
- 58
Trying to search for How many times God or Lord appears in italics in the KJV.
Thank You,
Gary
Thank You,
Gary
This can be done with a RegEx search.Trying to search for How many times God or Lord appears in italics in the KJV.
Thank You,
Gary
\[[^]]*\b(god|lord)\b[^]]*\]
----------------------------
\[[^]]*\b(god|lord)\b[^]]*\]
Options: Case insensitive; Exact spacing; Dot doesn’t match line breaks; ^$ don’t match at line breaks; Numbered capture; Greedy quantifiers; Allow zero-length matches
Match the character “[” literally «\[»
Match any character that is NOT a “]” «[^]]*»
Between zero and unlimited times, as many times as possible, giving back as needed (greedy) «*»
Assert position at a word boundary (position preceded or followed—but not both—by a letter, digit, or underscore in the active code page) «\b»
Match the regex below and capture its match into backreference number 1 «(god|lord)»
Match this alternative (attempting the next alternative only if this one fails) «god»
Match the character string “god” literally (case insensitive) «god»
Or match this alternative (the entire group fails if this one fails to match) «lord»
Match the character string “lord” literally (case insensitive) «lord»
Assert position at a word boundary (position preceded or followed—but not both—by a letter, digit, or underscore in the active code page) «\b»
Match any character that is NOT a “]” «[^]]*»
Between zero and unlimited times, as many times as possible, giving back as needed (greedy) «*»
Match the character “]” literally «\]»
Created with RegexBuddy
| Regular Expression search: | \[[^]]*\b(god|lord)\b[^]]*\] |
| Search parameters: | Italics in Brackets; Keep Brackets, Remove Pre- and Post-Scripts |
| Search scope: | Genesis - Revelation |
| Total matching verses: | 45 |
| Total Match Count: | 46 |
| String | Match Count |
| [god] | 22 |
| [the lord] | 8 |
| [of god] | 3 |
| [i pray god] | 2 |
| [of the lord] | 2 |
| [after god] | 1 |
| [and the lord] | 1 |
| [but god] | 1 |
| [god's] | 1 |
| [how god] | 1 |
| [lord] | 1 |
| [o god] | 1 |
| [the lord seeth] | 1 |
| [unto the lord thy god] | 1 |
What do you mean "the page does not change?" I don't understand.I did all those steps but no results.
The page does not change.