- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
问题:
我需要自动从此 JavaScript 中提取所有名称属性(分别适用于大型提供商和小型提供商)
/*
Simple OpenID Plugin
http://code.google.com/p/openid-selector/
This code is licensed under the New BSD License.
*/
var providers_large = {
google : {
name : 'Google',
url : 'https://www.google.com/accounts/o8/id'
},
yahoo : {
name : 'Yahoo',
url : 'http://me.yahoo.com/'
},
aol : {
name : 'AOL',
label : 'Enter your AOL screenname.',
url : 'http://openid.aol.com/{username}'
},
myopenid : {
name : 'MyOpenID',
label : 'Enter your MyOpenID username.',
url : 'http://{username}.myopenid.com/'
},
openid : {
name : 'OpenID',
label : 'Enter your OpenID.',
url : null
}
};
var providers_small = {
livejournal : {
name : 'LiveJournal',
label : 'Enter your Livejournal username.',
url : 'http://{username}.livejournal.com/'
},
/* flickr: {
name: 'Flickr',
label: 'Enter your Flickr username.',
url: 'http://flickr.com/{username}/'
}, */
/* technorati: {
name: 'Technorati',
label: 'Enter your Technorati username.',
url: 'http://technorati.com/people/technorati/{username}/'
}, */
wordpress : {
name : 'Wordpress',
label : 'Enter your Wordpress.com username.',
url : 'http://{username}.wordpress.com/'
},
blogger : {
name : 'Blogger',
label : 'Your Blogger account',
url : 'http://{username}.blogspot.com/'
},
verisign : {
name : 'Verisign',
label : 'Your Verisign username',
url : 'http://{username}.pip.verisignlabs.com/'
},
/* vidoop: {
name: 'Vidoop',
label: 'Your Vidoop username',
url: 'http://{username}.myvidoop.com/'
}, */
/* launchpad: {
name: 'Launchpad',
label: 'Your Launchpad username',
url: 'https://launchpad.net/~{username}'
}, */
claimid : {
name : 'ClaimID',
label : 'Your ClaimID username',
url : 'http://claimid.com/{username}'
},
clickpass : {
name : 'ClickPass',
label : 'Enter your ClickPass username',
url : 'http://clickpass.com/public/{username}'
},
google_profile : {
name : 'Google Profile',
label : 'Enter your Google Profile username',
url : 'http://www.google.com/profiles/{username}'
}
};
openid.locale = 'en';
openid.sprite = 'en'; // reused in german& japan localization
openid.demo_text = 'In client demo mode. Normally would have submitted OpenID:';
openid.signin_text = 'Sign-In';
openid.image_title = 'log in with {provider}';
所以我需要:A) 删除所有 C 风格注释B) 获取 [providers_large,providers_small] 的所有名称值(删除注释后)
到目前为止,我已尝试使用正则表达式删除 C 风格注释(但失败了)和正则表达式获取大括号之间的所有内容(失败)
我随后尝试将其读取为 JSON,但这当然失败了“无效的 json primitve 无论如何”
这是我使用的 stackoverflow 网站这是我迄今为止尝试过的示例
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleExperiments
{
public class Program
{
// http://stackoverflow.com/questions/2538279/strip-out-c-style-multi-line-comments
// NOT working
static string RemoveCstyleComments(string strInput)
{
string strPattern = @"/[*][\w\d\s]+[*]/";
//strPattern = @"/\*.*?\*/";
strPattern = "/\\*.*?\\*/";
string strOutput = System.Text.RegularExpressions.Regex.Replace(strInput, strPattern, string.Empty, System.Text.RegularExpressions.RegexOptions.Multiline);
Console.WriteLine(strOutput);
return strOutput;
}
// http://stackoverflow.com/questions/413071/regex-to-get-string-between-curly-braces-i-want-whats-between-the-curly-brace
// http://stackoverflow.com/questions/5337166/regular-expression-get-string-between-curly-braces
// http://stackoverflow.com/questions/1904617/regex-for-removing-curly-brackets-with-nested-curly-brackets
// http://stackoverflow.com/questions/378415/how-do-i-extract-a-string-of-text-that-lies-between-two-brackets-using-net
static string GetCurlyValues(string strInput)
{
string strPattern = "/{(.*?)}/";
strPattern = "/{([^}]*)}/";
strPattern = @"\{(\s*?.*?)*?\}";
strPattern = @"(?<=\{).*(?=\})";
strPattern = "{(.*{(.*)}.*)}";
strPattern = "{{([^}]*)}}";
strPattern = "{{({?}?[^{}])*}}";
strPattern = @"\(([^)]*)\)";
System.Text.RegularExpressions.Regex rex = new System.Text.RegularExpressions.Regex(strPattern, System.Text.RegularExpressions.RegexOptions.Multiline);
System.Text.RegularExpressions.Match mMatch = rex.Match(strInput);
foreach (System.Text.RegularExpressions.Group g in mMatch.Groups)
{
Console.WriteLine("Group: " + g.Value);
foreach (System.Text.RegularExpressions.Capture c in g.Captures)
{
Console.WriteLine("Capture: " + c.Value);
}
}
return "";
}
static void ReadFile()
{
try
{
string strFilePath = @"TestFile.txt";
if (System.IO.File.Exists(strFilePath))
{
// Create an instance of StreamReader to read from a file.
// The using statement also closes the StreamReader.
using (System.IO.StreamReader sr = new System.IO.StreamReader(strFilePath))
{
string line;
// Read and display lines from the file until the end of
// the file is reached.
while ((line = sr.ReadLine()) != null)
{
Console.WriteLine(line);
} // Whend
sr.Close();
} // End Using
} // End if (System.IO.File.Exists(strFilePath))
else
Console.WriteLine("File \"" + strFilePath + "\" does not exist.");
} // End Try
catch (Exception e)
{
// Let the user know what went wrong.
Console.WriteLine("The file could not be read:");
Console.WriteLine(e.Message);
} // End Catch
} // End Sub
public class cProvider
{
public string name = "abc";
public string label ="def";
public string url ="url";
}
public class cProviders_large
{
public List<cProvider> foo = new List<cProvider>();
}
static void Main(string[] args)
{
string strContent = System.IO.File.ReadAllText(@"D:\UserName\Downloads\openid-selector-1.3\openid-selector\js\openid-en - Kopie.js.txt");
Console.WriteLine(strContent);
//RemoveCstyleComments(strContent);
//GetCurlyValues(strContent);
System.Web.Script.Serialization.JavaScriptSerializer js = new System.Web.Script.Serialization.JavaScriptSerializer();
//object obj = js.DeserializeObject(strContent);
cProviders_large xx = new cProviders_large();
cProvider ap = new cProvider();
xx.foo.Add(ap);
xx.foo.Add(ap);
string res = js.Serialize(xx);
Console.WriteLine(res);
Console.WriteLine(Environment.NewLine);
Console.WriteLine(" --- Press any key to continue --- ");
Console.ReadKey();
} // End Sub Main
} // End Class Program
} // End namespace ConsoleExperiments
任何比我更了解正则表达式的人都可以为我提供必要的正则表达式吗?现在,看起来每次文件更改时我都会手动完成,我真的真的很讨厌这个......
编辑:顺便说一句,v8 包装器使用 C++.NET,因此无法在 Linux 上运行,尽管 v8 引擎在 Linux 上运行得很好。
所以我坚持通过 JSON 转换来解决问题。
最佳答案
您可以使用javascript engine :
using System;
using System.IO;
using Noesis.Javascript;
class Program
{
static void Main()
{
var context = new JavascriptContext();
context.SetParameter("openid", new object());
context.Run(File.ReadAllText("test.js"));
dynamic providers_large = context.GetParameter("providers_large");
foreach (var provider in providers_large)
{
Console.WriteLine(
"name: {0}, url: {1}",
provider.Value["name"],
provider.Value["url"]
);
}
}
}
在我的控制台上打印以下内容:
name: Google, url: https://www.google.com/accounts/o8/id
name: Yahoo, url: http://me.yahoo.com/
name: AOL, url: http://openid.aol.com/{username}
name: MyOpenID, url: http://{username}.myopenid.com/
name: OpenID, url:
关于C# 正则表达式删除 C 风格注释并提取括号之间的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8323445/
Textmate 语法(.tmLanguage 文件)有时以 XML 格式表示。 我想转换为更易读的格式(即 JSON 或 YAML)以集成到 VS Code 语法突出显示扩展中。 为了澄清我的意思,
如何通过 pandas 样式隐藏列标签?有一个 hide_index() 方法可以删除索引行,不幸的是 hide_column() 标签会删除整个列(标题和数据)。我只想隐藏标题。谢谢! 最佳答案 s
我正在考虑为一组服务使用 SOA 架构来支持我咨询的业务,以前我们使用数据库集成,其中每个应用程序从共享的 MS SQL 数据库中挑选出它需要的东西并使用它等等。我们有各种与怪物数据库(包括 java
所以我有以下代码,我想知道 Objective-C 中哪种“风格”被认为更好。 选项 1: id temp = [dictionary objectForKey: @"aBooleanValue"];
当创建一个没有类参数的对象时,我很难决定是否应该包含空括号。一个具体的例子:我正在与现有的 Java 代码交互,并创建一个实现名为 EventResponder 的接口(interface)的对象。我
我有一个抽象类Stack和一个扩展它的类:MyStack。我需要为 MyStack 创建一个复制构造函数。只传入 MyStack 对象更好,还是传入任何 Stack 对象更好? public MySt
我正在考虑将那些在函数体中未修改的 Python 函数参数拼写为 ALL_UPPERCASE,向此类 API 的用户发出信号,表明传递的值不会被修改(如果一切都如广告所言,无论如何) )。我不知道这会
我的 build.gradle 文件、staging、stable 和 production 以及默认构建类型 debug 和 release。对于其中的每一个,我都有不同的 AAR 文件,例如,我有
假设我有以下文件: main.cpp 例程.cpp 例程.h 进一步假设 main.cpp 调用了在 routine.cpp 中定义的函数 routine(),但是 routine.cpp 还包含仅由
我对此进行了一些搜索,但实际上我还没有找到 MySQL 中用于创建外键的样式概念是什么 - 在创建表定义中或在 alter 语句中。谢谢。 最佳答案 何时创建外键: 如果在创建表时明确需要外键,则在创
您好,我正在尝试将 Android 应用风格(免费且完整)实现为动态壁纸。在 Eclipse 中,我曾经使用以下代码从我自己的 Android Activity 打开动态壁纸预览: I
我的 Android 应用程序有两种不同的风格,lite 和 pro。在应用程序中,我有一个名为 customFragment.java 的类,它包含在 main 中(不同风格之间没有区别)并且还包含
我有一个包含多个子目录的项目,如下所示: /opt/exampleProject/src ├── __init__.py ├── dir1 │ ├── __init__.py │ ├──
假设我们有类似的东西 int f(int n); .... do{ int a = b; int b = f(a); } 这样说有没有风险 do{ int b = f(b);
是否有风格指导或理由来选择其中一种模式而不是另一种? 最小化上下文管理器下的代码量“感觉”更干净,但我无法指出具体原因。这可能只是偏好,并没有关于此事的官方指导。 1) 里面的所有代码都有上下文。 w
module Hints module Designer def self.message "Hello, World!" end
我正在开发一个具有多种风格的 android 项目。 这很好用,我可以自定义应用程序的元素,例如颜色和字符串资源。 我想让一些风格基于 AppCompat 浅色主题,一些基于 AppCompat 深色
因此,这不起作用,因为 seatsAvailable 是最终的。如何使用更多的 lambda 风格的从头开始的方式来完成我想要完成的事情? final boolean seatsAvailable =
考虑以下代码: cpu_set_t cpuset; CPU_ZERO(&cpuset); CPU_SET(0, &cpuset); sched_setaffinity(0, sizeof(cpuset
从历史上看,我总是这样编写我的异常处理代码: Cursor cursor = null; try { cursor = db.openCursor(null, null
我是一名优秀的程序员,十分优秀!